diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-09-23 17:03:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 17:03:00 -0700 |
commit | ba2858309ee5646ee25e85caae681937647e419b (patch) | |
tree | 60936bf08b4c908eb6a6f287bec4ddb53f7ba2a6 /ext/bg/js/options.js | |
parent | db405ffd240b8266e6b1585415ed1e90b629bc3e (diff) | |
parent | 352d214203fba929594c6139189fa59c6772c69f (diff) |
Merge pull request #218 from toasted-nutbread/settings-profile-conditions
Settings profile conditions
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 3dce5221..e9e321df 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -329,6 +329,22 @@ function profileOptionsUpdateVersion(options) { /* * Global options + * + * Each profile has an array named "conditionGroups", which is an array of condition groups + * which enable the contextual selection of profiles. The structure of the array is as follows: + * [ + * { + * conditions: [ + * { + * type: "string", + * operator: "string", + * value: "string" + * }, + * // ... + * ] + * }, + * // ... + * ] */ const optionsVersionUpdates = []; @@ -351,7 +367,8 @@ function optionsUpdateVersion(options, defaultProfileOptions) { if (profiles.length === 0) { profiles.push({ name: 'Default', - options: defaultProfileOptions + options: defaultProfileOptions, + conditionGroups: [] }); } @@ -369,6 +386,9 @@ function optionsUpdateVersion(options, defaultProfileOptions) { // Update profile options for (const profile of profiles) { + if (!Array.isArray(profile.conditionGroups)) { + profile.conditionGroups = []; + } profile.options = profileOptionsUpdateVersion(profile.options); } |