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

limit videos for keyframe extraction

This commit is contained in:
Luke Pulverenti 2015-09-08 16:40:48 -04:00
parent 1f556561c6
commit e9daebe89d
50 changed files with 1801 additions and 211 deletions

View file

@ -46,6 +46,11 @@
store.order(id);
}
function restorePurchase(id) {
id = normalizeId(id);
store.refresh();
}
function validateProduct(product, callback) {
// product attributes:
@ -123,7 +128,8 @@
window.IapManager = {
isPurchaseAvailable: isPurchaseAvailable,
getProductInfo: getProduct,
beginPurchase: beginPurchase
beginPurchase: beginPurchase,
restorePurchase: restorePurchase
};
initializeStore();