From 547db92693a13e97d97289e6a7694805c128e8b0 Mon Sep 17 00:00:00 2001 From: hiro-su Date: Tue, 8 Nov 2016 14:56:57 +0900 Subject: [PATCH] Fix the right click paste in IE11 --- src/xterm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.js b/src/xterm.js index f4e366da2b..e915edfb3f 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -458,7 +458,7 @@ Terminal.prototype.initGlobal = function() { rightClickHandler.call(this, ev, term); } - if (term.browser.isFirefox || term.browser.isMSIE) { + if (term.browser.isFirefox) { on(this.element, 'mousedown', function (ev) { if (ev.button == 2) { rightClickHandlerWrapper(ev);