Added comments for config states and added states for blacklist and whitelist.
This commit is contained in:
@@ -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'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user