mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-20 15:22:38 +09:00
Changes to the tooltips
This commit is contained in:
5
public/js/app.js
vendored
5
public/js/app.js
vendored
@@ -641,6 +641,11 @@ $.when($.ready).then(function () {
|
||||
}
|
||||
});
|
||||
$('#sortable').sortable('disable');
|
||||
$('#sortable').on('mouseenter', '.item', function () {
|
||||
$(this).siblings('.tooltip').addClass('active');
|
||||
}).on('mouseleave', '.item', function () {
|
||||
$(this).siblings('.tooltip').removeClass('active');
|
||||
});
|
||||
$('#search-container').on('input', 'input[name=q]', function () {
|
||||
var search = this.value;
|
||||
var items = $('#sortable').children('.item-container');
|
||||
|
||||
Reference in New Issue
Block a user