Skip to content

Commit e81f0a4

Browse files
author
Chris K
committed
Added more missing ActionHandlerInterfaces.
1 parent 2d6f4bc commit e81f0a4

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

src/ecma-debugger/dominspection/actions.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
cls.DOMInspectorActions = function(id)
1010
{
11+
ActionHandlerInterface.apply(this);
1112
this.view_id = id;
1213
this.id = id;
1314

src/ecma-debugger/js-source-view.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,8 @@ cls.JsSourceView = function(id, name, container_class)
860860

861861
/* action broker interface */
862862

863+
ActionHandlerInterface.apply(this);
864+
863865
/**
864866
* To handle a single action.
865867
* Returning false (as in === false) will cancel the event

src/repl/repl_view.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77

88
cls.ReplView = function(id, name, container_class, html, default_handler) {
9+
ActionHandlerInterface.apply(this);
910
this._resolver = new cls.PropertyFinder();
1011
this._data = new cls.ReplData(this);
1112

src/shortcutconfig/shortcutconfig.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ cls.ShortcutConfigView = function(id, name, container_class)
1111

1212
/* ActionHandler interface */
1313

14+
ActionHandlerInterface.apply(this);
15+
1416
const
1517
GLOBAL_HANDLER = "global",
1618
MINUS = -1,

0 commit comments

Comments
 (0)