Skip to content

Commit

Permalink
1. fix README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ddouble committed Feb 2, 2013
1 parent ebc9aa9 commit 9c3dff9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ IE6 **Notice:** : call $.bootstrapIE6(el) for every new html snippet (for ajax
/**
* make elements in container el to be compatible with IE6
*/
$.bootstrapIE6(el)
if ($.isFunction($.bootstrapIE6)) $.bootstrapIE6(el);
```

IE6 currently not support nested tabs control, because IE6 don't support child css selector
Expand Down
10 changes: 8 additions & 2 deletions p-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,15 @@ <h2>Heading</h2>

<!-- <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> -->
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript" src="js/bootstrap-ie.js"></script>
<![endif]-->
<script type="text/javascript">

</script>
(function ($) {
$(document).ready(function() {
if ($.isFunction($.bootstrapIE6)) $.bootstrapIE6($(document));
});
})(jQuery);
</script>

</body></html>

0 comments on commit 9c3dff9

Please sign in to comment.