Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1470)

Unified Diff: Source/devtools/front_end/resources/IndexedDBViews.js

Issue 340513003: DevTools: Add JSDoc for static methods, fix JSDoc types and induced errors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased patch Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/resources/IndexedDBViews.js
diff --git a/Source/devtools/front_end/resources/IndexedDBViews.js b/Source/devtools/front_end/resources/IndexedDBViews.js
index 9dfda5ac79d3ec59db51eeb3c5620cdf28513818..2dac34853e30586dd0beefaddd22df6d2e1ed952 100644
--- a/Source/devtools/front_end/resources/IndexedDBViews.js
+++ b/Source/devtools/front_end/resources/IndexedDBViews.js
@@ -225,10 +225,10 @@ WebInspector.IDBDataView.prototype = {
this._keyInputElement = editorToolbar.createChild("input", "key-input");
this._keyInputElement.placeholder = WebInspector.UIString("Start from key");
- this._keyInputElement.addEventListener("paste", this._keyInputChanged.bind(this));
- this._keyInputElement.addEventListener("cut", this._keyInputChanged.bind(this));
- this._keyInputElement.addEventListener("keypress", this._keyInputChanged.bind(this));
- this._keyInputElement.addEventListener("keydown", this._keyInputChanged.bind(this));
+ this._keyInputElement.addEventListener("paste", this._keyInputChanged.bind(this), false);
+ this._keyInputElement.addEventListener("cut", this._keyInputChanged.bind(this), false);
+ this._keyInputElement.addEventListener("keypress", this._keyInputChanged.bind(this), false);
+ this._keyInputElement.addEventListener("keydown", this._keyInputChanged.bind(this), false);
return editorToolbar;
},

Powered by Google App Engine
This is Rietveld 408576698