mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 09:32:15 +09:00
Admin Bar UI added.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12178 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
65745c33b3
commit
206f49764e
5 changed files with 45 additions and 39 deletions
|
|
@ -674,3 +674,15 @@ function xStopPropagation(evt)
|
|||
else if (window.event) window.event.cancelBubble = true;
|
||||
}
|
||||
|
||||
// Admin Bar
|
||||
jQuery(function($){
|
||||
$('#adminBar')
|
||||
.mouseover(function(){
|
||||
$('body').addClass('adminBar');
|
||||
})
|
||||
.mouseleave(function(){
|
||||
setTimeout(function(){
|
||||
$('body').removeClass('adminBar');
|
||||
}, 3000);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue