7b3b01bdf6
Make AccountManager into an event target for better separation between app and service-library handling of registration events.
22 satır
656 B
JavaScript
22 satır
656 B
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
Whisper.Registration = {
|
|
markDone: function () {
|
|
storage.put('chromiumRegistrationDoneEver', '');
|
|
storage.put('chromiumRegistrationDone', '');
|
|
},
|
|
isDone: function () {
|
|
return storage.get('chromiumRegistrationDone') === '';
|
|
},
|
|
everDone: function() {
|
|
return storage.get('chromiumRegistrationDoneEver') === '' ||
|
|
storage.get('chromiumRegistrationDone') === '';
|
|
},
|
|
remove: function() {
|
|
storage.remove('chromiumRegistrationDone');
|
|
}
|
|
};
|
|
}());
|