Skip to content

Commit 2cba2ff

Browse files
authored
Merge pull request #345 from hiro-su/fix-ie11-right-click-paste
Fix the right click paste in IE11
2 parents bf33423 + 547db92 commit 2cba2ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xterm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ Terminal.prototype.initGlobal = function() {
458458
rightClickHandler.call(this, ev, term);
459459
}
460460

461-
if (term.browser.isFirefox || term.browser.isMSIE) {
461+
if (term.browser.isFirefox) {
462462
on(this.element, 'mousedown', function (ev) {
463463
if (ev.button == 2) {
464464
rightClickHandlerWrapper(ev);

0 commit comments

Comments
 (0)