persist state if force quit app

This commit is contained in:
Gabriel Bazán 2016-09-09 11:54:02 -03:00
commit 44815fa8ee
2 changed files with 24 additions and 5 deletions

View file

@ -276,6 +276,13 @@ angular.module('copayApp.services')
storage.remove('nextStep-' + service, cb);
};
root.setLastState = function(state, toParams, cb) {
storage.set('lastState', state, toParams, cb);
};
root.getLastState = function(cb) {
storage.get('lastState', cb);
};
root.checkQuota = function() {
var block = '';