1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-25 12:59:05 +02:00

$(document).ready instead of $(function() {}) for ender support

This commit is contained in:
Jacob Thornton
2011-09-15 23:16:06 -07:00
parent 472632ba51
commit d1b594db7a
5 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@
var transitionEnd
$(function () {
$(document).ready(function () {
$.support.transition = (function () {
var thisBody = document.body || document.documentElement
@@ -216,7 +216,7 @@
/* MODAL DATA- IMPLEMENTATION
* ========================== */
$(function () {
$(document).ready(function () {
$('body').delegate('[data-controls-modal]', 'click', function (e) {
e.preventDefault()
var $this = $(this).data('show', true)