diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-09 20:19:49 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-18 19:14:01 -0400 |
commit | 8c4fb28a300b84ce876c35c370bd43daf2e65228 (patch) | |
tree | b315afe697045edca349074b914a285d78215566 /ext/bg/js/settings-profiles.js | |
parent | e3fb9603e22c5cbdc7cdf00b60e8ccbf1c7e2116 (diff) |
Add support creating profile usage conditions
Diffstat (limited to 'ext/bg/js/settings-profiles.js')
-rw-r--r-- | ext/bg/js/settings-profiles.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/bg/js/settings-profiles.js b/ext/bg/js/settings-profiles.js index 624562c6..70f77d7b 100644 --- a/ext/bg/js/settings-profiles.js +++ b/ext/bg/js/settings-profiles.js @@ -17,6 +17,7 @@ */ let currentProfileIndex = 0; +let profileConditionsContainer = null; function getOptionsContext() { return { @@ -81,6 +82,19 @@ async function profileFormWrite(optionsFull) { $('#profile-move-down').prop('disabled', currentProfileIndex >= optionsFull.profiles.length - 1); $('#profile-name').val(profile.name); + + if (profileConditionsContainer !== null) { + profileConditionsContainer.cleanup(); + } + + profileConditionsContainer = new ConditionsUI.Container( + profileConditionsDescriptor, + 'popupLevel', + profile.conditionGroups, + $('#profile-condition-groups'), + $('#profile-add-condition-group') + ); + profileConditionsContainer.save = () => apiOptionsSave(); } function profileOptionsPopulateSelect(select, profiles, currentValue, ignoreIndices) { |