Skip to content

Commit

Permalink
Added onclick event handling for submenus
Browse files Browse the repository at this point in the history
- This fixes #3
  • Loading branch information
LupusUmbrae committed May 21, 2016
1 parent 025f43b commit 5f8bd35
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions static/javascript/kdm.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@
$rootScope.timeline.options.push("Nemesis");

$(function() {
$('.dropdown-submenu').click(
function() {
$('.dropdown-submenu > .dropdown-menu').css('display','block');
return false;
});

$("#load-dialog").dialog({
autoOpen: false,
resizable: true,
Expand Down

0 comments on commit 5f8bd35

Please sign in to comment.