Merge pull request #345 from hiro-su/fix-ie11-right-click-paste

Fix the right click paste in IE11
This commit is contained in:
Paris Kasidiaris
2016-11-08 13:21:12 +02:00
committed by GitHub
+1 -1
View File
@@ -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);