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/fg/js/popup-nested.js | |
parent | db405ffd240b8266e6b1585415ed1e90b629bc3e (diff) | |
parent | 352d214203fba929594c6139189fa59c6772c69f (diff) |
Merge pull request #218 from toasted-nutbread/settings-profile-conditions
Settings profile conditions
Diffstat (limited to 'ext/fg/js/popup-nested.js')
-rw-r--r-- | ext/fg/js/popup-nested.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fg/js/popup-nested.js b/ext/fg/js/popup-nested.js index de2acccc..b36de2ec 100644 --- a/ext/fg/js/popup-nested.js +++ b/ext/fg/js/popup-nested.js @@ -19,13 +19,13 @@ let popupNestedInitialized = false; -async function popupNestedInitialize(id, depth, parentFrameId) { +async function popupNestedInitialize(id, depth, parentFrameId, url) { if (popupNestedInitialized) { return; } popupNestedInitialized = true; - const optionsContext = {depth}; + const optionsContext = {depth, url}; const options = await apiOptionsGet(optionsContext); const popupNestingMaxDepth = options.scanning.popupNestingMaxDepth; @@ -35,7 +35,7 @@ async function popupNestedInitialize(id, depth, parentFrameId) { const ignoreNodes = options.scanning.enableOnPopupExpressions ? [] : [ '.expression', '.expression *' ]; - window.frontendInitializationData = {id, depth, parentFrameId, ignoreNodes}; + window.frontendInitializationData = {id, depth, parentFrameId, ignoreNodes, url}; const scriptSrcs = [ '/fg/js/frontend-api-sender.js', |