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

extract more scripts

This commit is contained in:
Luke Pulverenti 2015-06-09 01:56:46 -04:00
parent f64e0c7c53
commit d84e09e501
24 changed files with 238 additions and 90 deletions

View file

@ -230,7 +230,14 @@
});
}
$(document).on('pageinit', "#editCollectionTitlesPage", function () {
function onSearchFormSubmit() {
var page = $(this).parents('.page');
showSearchResults(page, $('#txtLookupName', page).val());
return false;
}
$(document).on('pageinitdepends', "#editCollectionTitlesPage", function () {
var page = this;
@ -270,8 +277,9 @@
removeItemsFromCollection(page);
});
$('.collectionItemSearchForm').off('submit', onSearchFormSubmit).on('submit', onSearchFormSubmit);
}).on('pagebeforeshow', "#editCollectionTitlesPage", function () {
}).on('pagebeforeshowready', "#editCollectionTitlesPage", function () {
var page = this;
@ -290,15 +298,4 @@
$("body").off("popupafteropen.collections");
});
window.EditCollectionItemsPage = {
onSearchFormSubmit: function () {
var page = $(this).parents('.page');
showSearchResults(page, $('#txtLookupName', page).val());
return false;
}
};
})(jQuery, document, window, window.FileReader, escape);