1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update remote controls

This commit is contained in:
Luke Pulverenti 2015-06-26 14:32:21 -04:00
parent a605edece3
commit 7fb59cc969
8 changed files with 102 additions and 148 deletions

View file

@ -224,19 +224,21 @@
function hideSearchMenu() {
require(["jquery", "velocity"], function ($, Velocity) {
if ($('.viewMenuSearch').is(':visible')) {
require(["jquery", "velocity"], function ($, Velocity) {
$('.btnCloseSearch').hide();
var elem = $('.viewMenuSearch')
.css({ left: '0' })[0];
$('.btnCloseSearch').hide();
var elem = $('.viewMenuSearch')
.css({ left: '0' })[0];
Velocity.animate(elem, { "left": "100%" },
{
complete: function () {
$('.viewMenuSearch').visible(false);
}
Velocity.animate(elem, { "left": "100%" },
{
complete: function () {
$('.viewMenuSearch').visible(false);
}
});
});
});
}
}
$(document).on('pagebeforehide', ".libraryPage", function () {