Skip to content
This repository has been archived by the owner on Oct 31, 2018. It is now read-only.

Commit

Permalink
Update web-app/kickstart/js/kickstart.js
Browse files Browse the repository at this point in the history
Wrong behaviour fixed: Login window closed by clicking in input fields.
  • Loading branch information
mukhanov committed Feb 14, 2013
1 parent d0abf79 commit 03f749c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-app/kickstart/js/kickstart.js
Expand Up @@ -9,7 +9,7 @@ if (typeof jQuery !== 'undefined') {
* Close Dropdown menus when user clicks outside a menu (on the body)
*/
$("body").bind("click", function (e) {
$('.dropdown-toggle, .menu').parent("li").removeClass("open");
$('.menu').parent("li").removeClass("open");
});

/**
Expand Down

0 comments on commit 03f749c

Please sign in to comment.