temporary solution for testing pin limits
This commit is contained in:
parent
cd98fc6eab
commit
410a9dfb17
@ -37,5 +37,8 @@ define(function() {
|
|||||||
|
|
||||||
config.enableHistory = true;
|
config.enableHistory = true;
|
||||||
|
|
||||||
|
//config.enablePinLimit = true;
|
||||||
|
//config.pinLimit = 1000;
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -721,7 +721,7 @@ define([
|
|||||||
};
|
};
|
||||||
|
|
||||||
var getPinLimit = common.getPinLimit = function (cb) {
|
var getPinLimit = common.getPinLimit = function (cb) {
|
||||||
cb(void 0, 1000);
|
cb(void 0, typeof(AppConfig.pinLimit) === 'number'? AppConfig.pinLimit: 1000);
|
||||||
};
|
};
|
||||||
|
|
||||||
var isOverPinLimit = common.isOverPinLimit = function (cb) {
|
var isOverPinLimit = common.isOverPinLimit = function (cb) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user