Index: Source/devtools/front_end/ConsoleModel.js |
diff --git a/Source/devtools/front_end/ConsoleModel.js b/Source/devtools/front_end/ConsoleModel.js |
index 4ae78ae8f050ccfe0363b9305f38d92c7d978342..6a1f7542eb1c3523c065b3aac92c831c97f52017 100644 |
--- a/Source/devtools/front_end/ConsoleModel.js |
+++ b/Source/devtools/front_end/ConsoleModel.js |
@@ -424,6 +424,26 @@ WebInspector.ConsoleDispatcher.prototype = { |
} |
/** |
+ * @constructor |
+ * @implements {WebInspector.ActionDelegate} |
+ */ |
+WebInspector.ConsoleModel.ShowConsoleActionDelegate = function() |
pfeldman
2014/03/24 16:54:22
This should be a part of the console module.
apavlov
2014/03/25 10:03:45
Done.
|
+{ |
+} |
+ |
+WebInspector.ConsoleModel.ShowConsoleActionDelegate.prototype = { |
+ /** |
+ * @return {boolean} |
+ */ |
+ handleAction: function() |
+ { |
+ WebInspector.console.show(); |
+ return true; |
+ } |
+} |
+ |
+ |
+/** |
* @type {!WebInspector.ConsoleModel} |
*/ |
WebInspector.console; |