Skip to content

Commit

Permalink
Dev: auto open configuration menu
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed Dec 21, 2015
1 parent 65ccaca commit 85abd6c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions scripts/admin/admin_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@ $(document).ready(function(){
tableCellAdapters();
linksInDialog();

{

$(".dropdown").hover(
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop(true,true).slideDown("400");
$(this).toggleClass('open');
},
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop(true,true).slideUp("400");
$(this).toggleClass('open');
}
);
}

if(typeof(userdateformat) !== 'undefined')
{
$(".popupdate").each(function(i,e) {
Expand Down

0 comments on commit 85abd6c

Please sign in to comment.