Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2013-11-06 04:55:55 +0400
committerChris Rebert <github@rebertia.com>2013-11-06 04:55:55 +0400
commitf1b0cd491c4e3a0a564d92e145c1ecf55105557f (patch)
treecab378adb044e6d8de148b8282bc8240e840c718 /js
parentd2e710a2dfb1a6b4eaccedd975b96b24baa12390 (diff)
parentf140084f2beb17b0a266b42ab9a03d0b935e5f66 (diff)
Merge pull request #10039 from daguej/js-refs
Don't explicitly reference global jQuery
Diffstat (limited to 'js')
-rw-r--r--js/affix.js2
-rw-r--r--js/alert.js2
-rw-r--r--js/button.js2
-rw-r--r--js/carousel.js2
-rw-r--r--js/collapse.js2
-rw-r--r--js/dropdown.js2
-rw-r--r--js/modal.js2
-rw-r--r--js/popover.js2
-rw-r--r--js/scrollspy.js2
-rw-r--r--js/tab.js2
-rw-r--r--js/tooltip.js2
-rw-r--r--js/transition.js2
12 files changed, 12 insertions, 12 deletions
diff --git a/js/affix.js b/js/affix.js
index c79103731c..291e319596 100644
--- a/js/affix.js
+++ b/js/affix.js
@@ -123,4 +123,4 @@
})
})
-}(window.jQuery);
+}(jQuery);
diff --git a/js/alert.js b/js/alert.js
index 25bc67c29d..72dda55a73 100644
--- a/js/alert.js
+++ b/js/alert.js
@@ -95,4 +95,4 @@
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
-}(window.jQuery);
+}(jQuery);
diff --git a/js/button.js b/js/button.js
index 8a518cb0ed..b4f8f30778 100644
--- a/js/button.js
+++ b/js/button.js
@@ -106,4 +106,4 @@
e.preventDefault()
})
-}(window.jQuery);
+}(jQuery);
diff --git a/js/carousel.js b/js/carousel.js
index 8c580b818b..d56c218917 100644
--- a/js/carousel.js
+++ b/js/carousel.js
@@ -214,4 +214,4 @@
})
})
-}(window.jQuery);
+}(jQuery);
diff --git a/js/collapse.js b/js/collapse.js
index c89de982f2..83eb41d19c 100644
--- a/js/collapse.js
+++ b/js/collapse.js
@@ -176,4 +176,4 @@
$target.collapse(option)
})
-}(window.jQuery);
+}(jQuery);
diff --git a/js/dropdown.js b/js/dropdown.js
index 5680791c36..1929033404 100644
--- a/js/dropdown.js
+++ b/js/dropdown.js
@@ -151,4 +151,4 @@
.on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
-}(window.jQuery);
+}(jQuery);
diff --git a/js/modal.js b/js/modal.js
index d5e11296fb..5feca4b1b8 100644
--- a/js/modal.js
+++ b/js/modal.js
@@ -243,4 +243,4 @@
.on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
-}(window.jQuery);
+}(jQuery);
diff --git a/js/popover.js b/js/popover.js
index f2ba5be006..74c9ba1f65 100644
--- a/js/popover.js
+++ b/js/popover.js
@@ -114,4 +114,4 @@
return this
}
-}(window.jQuery);
+}(jQuery);
diff --git a/js/scrollspy.js b/js/scrollspy.js
index 19ed6fcd52..d9e008bdfa 100644
--- a/js/scrollspy.js
+++ b/js/scrollspy.js
@@ -155,4 +155,4 @@
})
})
-}(window.jQuery);
+}(jQuery);
diff --git a/js/tab.js b/js/tab.js
index 87dae64520..7f1962b9bd 100644
--- a/js/tab.js
+++ b/js/tab.js
@@ -132,4 +132,4 @@
$(this).tab('show')
})
-}(window.jQuery);
+}(jQuery);
diff --git a/js/tooltip.js b/js/tooltip.js
index 68078d05fc..60c01825d1 100644
--- a/js/tooltip.js
+++ b/js/tooltip.js
@@ -383,4 +383,4 @@
return this
}
-}(window.jQuery);
+}(jQuery);
diff --git a/js/transition.js b/js/transition.js
index bf6c7329c8..d3d36bd758 100644
--- a/js/transition.js
+++ b/js/transition.js
@@ -53,4 +53,4 @@
$.support.transition = transitionEnd()
})
-}(window.jQuery);
+}(jQuery);