From fe3decf83a5b05a637a358c698a3ef3322d860a4 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 22 Jun 2011 11:38:33 +1000 Subject: [PATCH] Remove Window special casing from Editor#pasteClipboard. --- common/content/editor.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/content/editor.js b/common/content/editor.js index 890558f6..cb004b3a 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -24,12 +24,6 @@ var Editor = Module("editor", { selectedText: function () String(Editor.getEditor(null).selection), pasteClipboard: function (clipboard, toStart) { - // TODO: I don't think this is needed anymore? --djk - if (util.OS.isWindows) { - this.executeCommand("cmd_paste"); - return; - } - let elem = dactyl.focusedElement; if (elem.inputField) elem = elem.inputField;