diff options
| author | Chris Rebert <[email protected]> | 2015-01-21 14:13:26 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-01-21 14:13:26 -0800 |
| commit | 426e8e12cdbbfd6080d0a861b456538c0c123d4b (patch) | |
| tree | 9a395b654981e95e56eddc91b04596d7a6a668a3 | |
| parent | c8be2a063ae45497021a96dc53dc2d066f214867 (diff) | |
| download | bootstrap-426e8e12cdbbfd6080d0a861b456538c0c123d4b.tar.xz bootstrap-426e8e12cdbbfd6080d0a861b456538c0c123d4b.zip | |
Fix error in condition in Tab plugin
Refs #15186
| -rw-r--r-- | js/tab.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ element.removeClass('fade') } - if (element.parent('.dropdown-menu')) { + if (element.parent('.dropdown-menu').length) { element .closest('li.dropdown') .addClass('active') |
