diff options
| author | mdxs <[email protected]> | 2013-12-04 11:15:48 +0100 |
|---|---|---|
| committer | mdxs <[email protected]> | 2013-12-04 11:15:48 +0100 |
| commit | f7d21d6919f186dc6e760f0dc8a574dbb0c133d6 (patch) | |
| tree | 4fbc3891286d0495d300c5dff55a15970b06a869 | |
| parent | 7b945ad29641444133f3fb8db2b8f3e94332c3f1 (diff) | |
| download | bootstrap-f7d21d6919f186dc6e760f0dc8a574dbb0c133d6.tar.xz bootstrap-f7d21d6919f186dc6e760f0dc8a574dbb0c133d6.zip | |
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.
| -rw-r--r-- | js/dropdown.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/dropdown.js b/js/dropdown.js index a56ac8f94..13352ef7c 100644 --- a/js/dropdown.js +++ b/js/dropdown.js @@ -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) { |
