Added comments for config states and added states for blacklist and whitelist.

This commit is contained in:
Mario Basic
2015-06-13 22:12:20 +02:00
parent b8ca450969
commit a43037fe78
4 changed files with 10 additions and 4 deletions

View File

@@ -30,10 +30,13 @@ var config = {
}, },
// Default theme // Default theme
theme: 'light', theme: 'light',
// Valid extension states
states: [ states: [
'allGood', 'allGood',
'notLogging', 'notLogging',
'notSignedIn' 'notSignedIn',
'blacklisted',
'whitelisted'
] ]
}; };

View File

@@ -545,7 +545,8 @@ var config = {
}, },
// Default theme // Default theme
theme: 'light', theme: 'light',
states: ['allGood', 'notLogging', 'notSignedIn'] // Valid extension states
states: ['allGood', 'notLogging', 'notSignedIn', 'blacklisted', 'whitelisted']
}; };
exports['default'] = config; exports['default'] = config;

View File

@@ -134,7 +134,8 @@ var config = {
}, },
// Default theme // Default theme
theme: 'light', theme: 'light',
states: ['allGood', 'notLogging', 'notSignedIn'] // Valid extension states
states: ['allGood', 'notLogging', 'notSignedIn', 'blacklisted', 'whitelisted']
}; };
exports['default'] = config; exports['default'] = config;

View File

@@ -104,7 +104,8 @@ var config = {
}, },
// Default theme // Default theme
theme: 'light', theme: 'light',
states: ['allGood', 'notLogging', 'notSignedIn'] // Valid extension states
states: ['allGood', 'notLogging', 'notSignedIn', 'blacklisted', 'whitelisted']
}; };
exports['default'] = config; exports['default'] = config;