Index: Source/devtools/front_end/ResourcesPanel.js |
diff --git a/Source/devtools/front_end/ResourcesPanel.js b/Source/devtools/front_end/ResourcesPanel.js |
index 743c7fc35e0e5d4db5ff989aa1c72cd92a7fa222..80ff7488f2a3286095d8f9a5b039ffdf4aaedb8a 100644 |
--- a/Source/devtools/front_end/ResourcesPanel.js |
+++ b/Source/devtools/front_end/ResourcesPanel.js |
@@ -135,6 +135,15 @@ WebInspector.ResourcesPanel.prototype = { |
this._initialize(); |
}, |
+ /** |
+ * @param {WebInspector.Event} event |
apavlov
2013/07/31 12:51:35
This is not the web inspector event, this is a DOM
|
+ */ |
+ handleShortcut: function(event) |
+ { |
+ if (this.visibleView && typeof this.visibleView.handleShortcut === "function") |
+ return this.visibleView.handleShortcut(event); |
+ }, |
+ |
_initialize: function() |
{ |
if (!this._initialized && this.isShowing() && this._cachedResourcesWereLoaded) { |