($this)
| 743 | Dropdown.VERSION = '3.3.5' |
| 744 | |
| 745 | function getParent($this) { |
| 746 | var selector = $this.attr('data-target') |
| 747 | |
| 748 | if (!selector) { |
| 749 | selector = $this.attr('href') |
| 750 | selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 |
| 751 | } |
| 752 | |
| 753 | var $parent = selector && $(selector) |
| 754 | |
| 755 | return $parent && $parent.length ? $parent : $this.parent() |
| 756 | } |
| 757 | |
| 758 | function clearMenus(e) { |
| 759 | if (e && e.which === 3) return |
no test coverage detected