mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #696 - Support delete in web client
This commit is contained in:
parent
f388b62398
commit
76401c0e97
2 changed files with 11 additions and 11 deletions
|
@ -1170,16 +1170,8 @@
|
|||
|
||||
renderCriticReviews(page, currentItem);
|
||||
|
||||
}).on('swipeleft.sibling', function() {
|
||||
|
||||
$('.lnkNextItem', page)[0].click();
|
||||
|
||||
}).on('swiperight.sibling', function () {
|
||||
|
||||
$('.lnkPreviousItem', page)[0].click();
|
||||
});
|
||||
|
||||
|
||||
reload(page);
|
||||
|
||||
}).on('pagehide', "#itemDetailPage", function () {
|
||||
|
@ -1188,7 +1180,7 @@
|
|||
|
||||
var page = this;
|
||||
|
||||
$(page).off("click.moreScenes").off("click.morePeople").off("click.moreSpecials").off("click.moreCriticReviews").off("swipeleft.sibling").off("swiperight.sibling");
|
||||
$(page).off("click.moreScenes").off("click.morePeople").off("click.moreSpecials").off("click.moreCriticReviews");
|
||||
});
|
||||
|
||||
function itemDetailPage() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue