Skip to content

Commit

Permalink
Dev: removed menu open on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed Jan 4, 2016
1 parent 76986c9 commit 309eef3
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions scripts/admin/admin_core.js
Expand Up @@ -25,31 +25,6 @@ $(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');
}
);

$(".btn-group").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 309eef3

Please sign in to comment.