Rename Terminado attach and detach functions

This commit is contained in:
Elliot Saba
2016-10-08 00:36:08 -07:00
parent fe54da34f8
commit 10dd22a3d4
+2 -2
View File
@@ -124,7 +124,7 @@
* should happen instantly or at a maximum
* frequency of 1 rendering per 10ms.
*/
Xterm.prototype.attach = function (socket, bidirectional, buffered) {
Xterm.prototype.terminadoAttach = function (socket, bidirectional, buffered) {
return exports.attach(this, socket, bidirectional, buffered);
};
@@ -134,7 +134,7 @@
* @param {WebSocket} socket - The socket from which to detach the current
* terminal.
*/
Xterm.prototype.detach = function (socket) {
Xterm.prototype.terminadoDetach = function (socket) {
return exports.detach(this, socket);
};