mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update collection menus
This commit is contained in:
parent
65442321a0
commit
8119b930e4
17 changed files with 183 additions and 52 deletions
12
dashboard-ui/cordova/iap.js
vendored
12
dashboard-ui/cordova/iap.js
vendored
|
@ -54,6 +54,7 @@
|
|||
// product attributes:
|
||||
// https://github.com/j3k0/cordova-plugin-purchase/blob/master/doc/api.md#validation-error-codes
|
||||
|
||||
alert(JSON.stringify(product));
|
||||
alert(JSON.stringify(product.transaction));
|
||||
|
||||
callback(true, {
|
||||
|
@ -86,11 +87,12 @@
|
|||
// show some logs and finish the transaction.
|
||||
store.when(id).approved(function (product) {
|
||||
|
||||
if (product.type == store.PAID_SUBSCRIPTION) {
|
||||
product.verify();
|
||||
} else {
|
||||
product.finish();
|
||||
}
|
||||
product.finish();
|
||||
//if (product.type == store.PAID_SUBSCRIPTION) {
|
||||
// product.verify();
|
||||
//} else {
|
||||
// product.finish();
|
||||
//}
|
||||
});
|
||||
|
||||
store.when(id).verified(function (p) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue