diff options
Diffstat (limited to 'ext/js/app/popup-proxy.js')
-rw-r--r-- | ext/js/app/popup-proxy.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ext/js/app/popup-proxy.js b/ext/js/app/popup-proxy.js index d9e1af8d..85014c47 100644 --- a/ext/js/app/popup-proxy.js +++ b/ext/js/app/popup-proxy.js @@ -46,8 +46,6 @@ class PopupProxy extends EventDispatcher { this._frameOffsetExpireTimeout = 1000; } - // Public properties - /** * The ID of the popup. * @type {string} @@ -125,15 +123,13 @@ class PopupProxy extends EventDispatcher { return this._frameId; } - // Public functions - /** * Sets the options context for the popup. * @param {object} optionsContext The options context object. * @returns {Promise<void>} */ - setOptionsContext(optionsContext, source) { - return this._invokeSafe('setOptionsContext', {id: this._id, optionsContext, source}); + setOptionsContext(optionsContext) { + return this._invokeSafe('setOptionsContext', {id: this._id, optionsContext}); } /** |