Commit 02df15db authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #11709 from mdxs/patch-1

Dropping unused variable in dropdown.js
parents 4031f5ee f7d21d69
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -26,7 +26,7 @@
var backdrop = '.dropdown-backdrop'
var toggle = '[data-toggle=dropdown]'
var Dropdown = function (element) {
var $el = $(element).on('click.bs.dropdown', this.toggle)
$(element).on('click.bs.dropdown', this.toggle)
}
Dropdown.prototype.toggle = function (e) {
......
Supports Markdown
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