1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-06 13:46:42 +02:00

Merge pull request #10039 from daguej/js-refs

Don't explicitly reference global jQuery
This commit is contained in:
Chris Rebert
2013-11-05 16:55:55 -08:00
12 changed files with 12 additions and 12 deletions

View File

@@ -123,4 +123,4 @@
}) })
}) })
}(window.jQuery); }(jQuery);

View File

@@ -95,4 +95,4 @@
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
}(window.jQuery); }(jQuery);

View File

@@ -106,4 +106,4 @@
e.preventDefault() e.preventDefault()
}) })
}(window.jQuery); }(jQuery);

View File

@@ -214,4 +214,4 @@
}) })
}) })
}(window.jQuery); }(jQuery);

View File

@@ -176,4 +176,4 @@
$target.collapse(option) $target.collapse(option)
}) })
}(window.jQuery); }(jQuery);

View File

@@ -151,4 +151,4 @@
.on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle) .on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown) .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
}(window.jQuery); }(jQuery);

View File

@@ -243,4 +243,4 @@
.on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') }) .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') }) .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
}(window.jQuery); }(jQuery);

View File

@@ -114,4 +114,4 @@
return this return this
} }
}(window.jQuery); }(jQuery);

View File

@@ -155,4 +155,4 @@
}) })
}) })
}(window.jQuery); }(jQuery);

View File

@@ -132,4 +132,4 @@
$(this).tab('show') $(this).tab('show')
}) })
}(window.jQuery); }(jQuery);

View File

@@ -383,4 +383,4 @@
return this return this
} }
}(window.jQuery); }(jQuery);

View File

@@ -53,4 +53,4 @@
$.support.transition = transitionEnd() $.support.transition = transitionEnd()
}) })
}(window.jQuery); }(jQuery);