($this)
| 772 | Dropdown.VERSION = '3.3.7' |
| 773 | |
| 774 | function getParent($this) { |
| 775 | var selector = $this.attr('data-target') |
| 776 | |
| 777 | if (!selector) { |
| 778 | selector = $this.attr('href') |
| 779 | selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 |
| 780 | } |
| 781 | |
| 782 | var $parent = selector && $(selector) |
| 783 | |
| 784 | return $parent && $parent.length ? $parent : $this.parent() |
| 785 | } |
| 786 | |
| 787 | function clearMenus(e) { |
| 788 | if (e && e.which === 3) return |
no outgoing calls
no test coverage detected