diff options
Diffstat (limited to 'devtools/client/dom')
-rw-r--r-- | devtools/client/dom/content/dom-decorator.js | 2 | ||||
-rw-r--r-- | devtools/client/dom/content/reducers/grips.js | 2 | ||||
-rw-r--r-- | devtools/client/dom/panel.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/devtools/client/dom/content/dom-decorator.js b/devtools/client/dom/content/dom-decorator.js index a711a95d83..625caaf55b 100644 --- a/devtools/client/dom/content/dom-decorator.js +++ b/devtools/client/dom/content/dom-decorator.js @@ -41,7 +41,7 @@ DomDecorator.prototype = { * Return custom React template for specified object. The template * might depend on specified column. */ - getValueRep(value, colId) {}, + getValueRep() {}, }; // Exports from this module diff --git a/devtools/client/dom/content/reducers/grips.js b/devtools/client/dom/content/reducers/grips.js index 1413baa1ce..f5871d59dd 100644 --- a/devtools/client/dom/content/reducers/grips.js +++ b/devtools/client/dom/content/reducers/grips.js @@ -36,7 +36,7 @@ function grips(state = getInitialState(), action) { /** * Handle requestProperties action */ -function onRequestProperties(state, action) { +function onRequestProperties(state) { return state; } diff --git a/devtools/client/dom/panel.js b/devtools/client/dom/panel.js index 98e821cbd8..427ffe58f3 100644 --- a/devtools/client/dom/panel.js +++ b/devtools/client/dom/panel.js @@ -147,7 +147,7 @@ DomPanel.prototype = { this.refresh(); }, - _onTargetSelected({ targetFront }) { + _onTargetSelected() { this.forceRefresh(); }, |