added music folders view
This commit is contained in:
parent
6afa97f6b8
commit
8d07bdcc53
6 changed files with 143 additions and 4 deletions
9
dashboard-ui/cordova/iap.js
vendored
9
dashboard-ui/cordova/iap.js
vendored
|
@ -67,6 +67,13 @@
|
|||
function validateProduct(product, callback) {
|
||||
|
||||
var productId = product.id;
|
||||
|
||||
// We should never get in here with the unlock, but in case we do
|
||||
if ((productId || '').toLowerCase().indexOf('appunlock') != -1) {
|
||||
callback(true, product);
|
||||
return;
|
||||
}
|
||||
|
||||
var cacheKey = productId + (product.transaction.id || '');
|
||||
|
||||
var cachedResult = validationCache[cacheKey];
|
||||
|
@ -268,7 +275,7 @@
|
|||
}
|
||||
|
||||
function isUnlockedOverride(feature) {
|
||||
|
||||
|
||||
var deferred = DeferredBuilder.Deferred();
|
||||
deferred.resolveWith(null, [false]);
|
||||
return deferred.promise();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue