aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorfat <[email protected]>2013-05-22 15:18:30 -0700
committerfat <[email protected]>2013-05-22 15:18:30 -0700
commite7b4fedee8f0e7590d0b8eff7aaae160bad0e483 (patch)
treedb7da999415aa62fdc45cd1e5da46d417433f1fc /js
parent7cbec6e89a0f8a14afe2e601159ecc6a52062205 (diff)
downloadbootstrap-e7b4fedee8f0e7590d0b8eff7aaae160bad0e483.tar.xz
bootstrap-e7b4fedee8f0e7590d0b8eff7aaae160bad0e483.zip
remove 3rd arg from $.each call
Diffstat (limited to 'js')
-rw-r--r--js/tooltip.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tooltip.js b/js/tooltip.js
index 45f068010..80bdf7266 100644
--- a/js/tooltip.js
+++ b/js/tooltip.js
@@ -97,7 +97,7 @@
this._options && $.each(this._options, function (key, value) {
if (defaults[key] != value) options[key] = value
- }, this)
+ })
var self = $(e.currentTarget)[this.type](options).data('bs.' + this.type)