You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			735 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			735 B
		
	
	
	
		
			JavaScript
		
	
| /*
 | |
|  * vim: ts=4:sw=4:expandtab
 | |
|  */
 | |
| (function () {
 | |
|     'use strict';
 | |
|     Whisper.Registration = {
 | |
|         markEverDone: function() {
 | |
|             storage.put('chromiumRegistrationDoneEver', '');
 | |
|         },
 | |
|         markDone: function () {
 | |
|             this.markEverDone();
 | |
|             storage.put('chromiumRegistrationDone', '');
 | |
|         },
 | |
|         isDone: function () {
 | |
|             return storage.get('chromiumRegistrationDone') === '';
 | |
|         },
 | |
|         everDone: function() {
 | |
|             return storage.get('chromiumRegistrationDoneEver') === '' ||
 | |
|                    storage.get('chromiumRegistrationDone') === '';
 | |
|         },
 | |
|         remove: function() {
 | |
|             storage.remove('chromiumRegistrationDone');
 | |
|         }
 | |
|     };
 | |
| }());
 |