Handle focus clearing

This commit is contained in:
Steven Silvester
2016-04-21 07:57:13 -05:00
parent a5e34e2288
commit 7988f634f3
+3
View File
@@ -379,6 +379,8 @@
Terminal.options = {};
Terminal.focus = null;
each(keys(Terminal.defaults), function(key) {
Terminal[key] = Terminal.defaults[key];
Terminal.options[key] = Terminal.defaults[key];
@@ -413,6 +415,7 @@
if (this.sendFocus) {
this.send('\x1b[O');
}
Terminal.focus = null;
};
/**