forked from guoguo/Bootstrap-IE6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathie6.js
More file actions
11 lines (11 loc) · 614 Bytes
/
Copy pathie6.js
File metadata and controls
11 lines (11 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
$(function() {
if ($.browser.msie && parseInt($.browser.version, 10) === 6) {
$('.row div[class^="span"]:last-child').addClass('last-child');
$('[class*="span"]').addClass('margin-left-20');
$('[class*="span"][class*="offset"]').removeClass('margin-left-20');
$(':button[class="btn"], :reset[class="btn"], :submit[class="btn"], input[type="button"]').addClass('button-reset');
$(':checkbox').addClass('input-checkbox');
$('[class^="icon-"], [class*=" icon-"]').addClass('icon-sprite');
$('.pagination li:first-child a').addClass('pagination-first-child');
}
});