-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown.js
More file actions
executable file
·42 lines (36 loc) · 930 Bytes
/
dropdown.js
File metadata and controls
executable file
·42 lines (36 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(function($){
/**
* Powers the universal dropdown selector.
*
* @class DropDown
* @param {Object} el jQuery object
*/
function DropDown(el) {
this.dd = el;
this.initEvents();
}
DropDown.prototype = {
initEvents : function() {
// Toggle .dropdown-active on click
this.dd.on('click', function(event){
$(this).toggleClass('dropdown-active');
event.stopPropagation();
});
// Toggle .dropdown-active on hover
$(".dropdown-hover").mouseenter(function(event) {
$(this).addClass("dropdown-active");
event.stopPropagation();
});
}
};
$(function(){
var dropdown = $('.dropdown');
new DropDown(dropdown);
$(document).click(function() {
dropdown.removeClass('dropdown-active');
});
$(".dropdown-menu").mouseleave(function() {
dropdown.removeClass("dropdown-active");
});
});
}(jQuery));