mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-25 00:40:24 +00:00
Dropping unused variable in dropdown.js
Dropping an unused variable in the Dropdown function inside the `dropdown.js` code. There are no new/changed unit tests, as there are no feature/bug changes requiring new test cases. For the record: I agree to dual-license this contribution under the Apache 2 and MIT licenses.
This commit is contained in:
parent
7b945ad296
commit
f7d21d6919
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue