Commit e7b4fede authored by fat's avatar fat

remove 3rd arg from $.each call

parent 7cbec6e8
...@@ -1088,7 +1088,7 @@ ...@@ -1088,7 +1088,7 @@
this._options && $.each(this._options, function (key, value) { this._options && $.each(this._options, function (key, value) {
if (defaults[key] != value) options[key] = value if (defaults[key] != value) options[key] = value
}, this) })
var self = $(e.currentTarget)[this.type](options).data('bs.' + this.type) var self = $(e.currentTarget)[this.type](options).data('bs.' + this.type)
......
This diff is collapsed.
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
this._options && $.each(this._options, function (key, value) { this._options && $.each(this._options, function (key, value) {
if (defaults[key] != value) options[key] = value if (defaults[key] != value) options[key] = value
}, this) })
var self = $(e.currentTarget)[this.type](options).data('bs.' + this.type) var self = $(e.currentTarget)[this.type](options).data('bs.' + this.type)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment