mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update bower_components build process
This commit is contained in:
parent
e1b37cf634
commit
69c951cb3f
3 changed files with 18 additions and 18 deletions
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
var settingsKey = "betatester";
|
var settingsKey = "betatester";
|
||||||
|
|
||||||
var expectedValue = new Date().toDateString() + "5";
|
var expectedValue = new Date().toDateString() + "6";
|
||||||
if (appStorage.getItem(settingsKey) == expectedValue) {
|
if (appStorage.getItem(settingsKey) == expectedValue) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -914,7 +914,7 @@
|
||||||
overlayText: true,
|
overlayText: true,
|
||||||
lazy: true,
|
lazy: true,
|
||||||
showDetailsMenu: true,
|
showDetailsMenu: true,
|
||||||
overlayPlayButton: AppInfo.enableAppLayouts
|
overlayMoreButton: AppInfo.enableAppLayouts
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else if (item.Type == "GameSystem") {
|
else if (item.Type == "GameSystem") {
|
||||||
|
@ -1961,31 +1961,31 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
pageIdOn('pageinit', "itemDetailPage", function() {
|
pageIdOn('pageinit', "itemDetailPage", function () {
|
||||||
|
|
||||||
var page = this;
|
var page = this;
|
||||||
|
|
||||||
$('.btnPlay', page).on('click', function() {
|
$('.btnPlay', page).on('click', function () {
|
||||||
playCurrentItem(this);
|
playCurrentItem(this);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.btnPlayTrailer', page).on('click', function() {
|
$('.btnPlayTrailer', page).on('click', function () {
|
||||||
playTrailer(page);
|
playTrailer(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.btnSplitVersions', page).on('click', function() {
|
$('.btnSplitVersions', page).on('click', function () {
|
||||||
|
|
||||||
splitVersions(page);
|
splitVersions(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.btnSync', page).on('click', function() {
|
$('.btnSync', page).on('click', function () {
|
||||||
|
|
||||||
SyncManager.showMenu({
|
SyncManager.showMenu({
|
||||||
items: [currentItem]
|
items: [currentItem]
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.btnRecord,.btnFloatingRecord', page).on('click', function() {
|
$('.btnRecord,.btnFloatingRecord', page).on('click', function () {
|
||||||
|
|
||||||
var id = getParameterByName('id');
|
var id = getParameterByName('id');
|
||||||
|
|
||||||
|
@ -1993,12 +1993,12 @@
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.btnCancelRecording', page).on('click', function() {
|
$('.btnCancelRecording', page).on('click', function () {
|
||||||
|
|
||||||
deleteTimer(page, currentItem.TimerId);
|
deleteTimer(page, currentItem.TimerId);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.btnMoreCommands', page).on('click', function() {
|
$('.btnMoreCommands', page).on('click', function () {
|
||||||
|
|
||||||
var button = this;
|
var button = this;
|
||||||
|
|
||||||
|
@ -2008,33 +2008,33 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.childrenItemsContainer', page).on('playallfromhere', function(e, index) {
|
$('.childrenItemsContainer', page).on('playallfromhere', function (e, index) {
|
||||||
|
|
||||||
LibraryBrowser.playAllFromHere(_childrenItemsFunction, index);
|
LibraryBrowser.playAllFromHere(_childrenItemsFunction, index);
|
||||||
|
|
||||||
}).on('queueallfromhere', function(e, index) {
|
}).on('queueallfromhere', function (e, index) {
|
||||||
|
|
||||||
LibraryBrowser.queueAllFromHere(_childrenItemsFunction, index);
|
LibraryBrowser.queueAllFromHere(_childrenItemsFunction, index);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$(page).on("click", ".moreScenes", function() {
|
$(page).on("click", ".moreScenes", function () {
|
||||||
|
|
||||||
Dashboard.getCurrentUser().then(function (user) {
|
Dashboard.getCurrentUser().then(function (user) {
|
||||||
renderScenes(page, currentItem, user);
|
renderScenes(page, currentItem, user);
|
||||||
});
|
});
|
||||||
|
|
||||||
}).on("click", ".morePeople", function() {
|
}).on("click", ".morePeople", function () {
|
||||||
|
|
||||||
renderCast(page, currentItem, getContext(currentItem));
|
renderCast(page, currentItem, getContext(currentItem));
|
||||||
|
|
||||||
}).on("click", ".moreSpecials", function() {
|
}).on("click", ".moreSpecials", function () {
|
||||||
|
|
||||||
Dashboard.getCurrentUser().then(function (user) {
|
Dashboard.getCurrentUser().then(function (user) {
|
||||||
renderSpecials(page, currentItem, user);
|
renderSpecials(page, currentItem, user);
|
||||||
});
|
});
|
||||||
|
|
||||||
}).on("click", ".moreCriticReviews", function() {
|
}).on("click", ".moreCriticReviews", function () {
|
||||||
|
|
||||||
renderCriticReviews(page, currentItem);
|
renderCriticReviews(page, currentItem);
|
||||||
});
|
});
|
||||||
|
@ -2046,7 +2046,7 @@
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
pageIdOn('pagebeforeshow', "itemDetailPage", function() {
|
pageIdOn('pagebeforeshow', "itemDetailPage", function () {
|
||||||
|
|
||||||
var page = this;
|
var page = this;
|
||||||
|
|
||||||
|
|
|
@ -2208,7 +2208,7 @@ var AppInfo = {};
|
||||||
postInitDependencies.push('scripts/nowplayingbar');
|
postInitDependencies.push('scripts/nowplayingbar');
|
||||||
}
|
}
|
||||||
|
|
||||||
postInitDependencies.push('components/testermessage');
|
//postInitDependencies.push('components/testermessage');
|
||||||
|
|
||||||
require(postInitDependencies);
|
require(postInitDependencies);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue