mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
'use strict';
|
|
|
|
$(function() {
|
|
var items = $('.dashboard>div>section>ul>li');
|
|
items.on('mouseenter focusin', function() {
|
|
$(this).addClass('hover').find('>.action').show();
|
|
});
|
|
items.on('mouseleave focusout', function() {
|
|
if(!$(this).find(':focus').length) {
|
|
$(this).removeClass('hover').find('>.action').hide();
|
|
}
|
|
});
|
|
});
|