remove comments.
This commit is contained in:
parent
aaa9905fac
commit
ad546d9af9
|
@ -515,7 +515,6 @@ Program.prototype._bindMouse = function(s, buf) {
|
|||
key.action = 'mousemove';
|
||||
}
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
|
||||
return;
|
||||
|
@ -585,7 +584,6 @@ Program.prototype._bindMouse = function(s, buf) {
|
|||
key.action = 'mousemove';
|
||||
}
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
|
||||
return;
|
||||
|
@ -644,7 +642,6 @@ Program.prototype._bindMouse = function(s, buf) {
|
|||
key.action = 'mousemove';
|
||||
}
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
|
||||
return;
|
||||
|
@ -680,7 +677,6 @@ Program.prototype._bindMouse = function(s, buf) {
|
|||
: b === 6 ? 'right'
|
||||
: 'unknown';
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
|
||||
return;
|
||||
|
@ -709,7 +705,6 @@ Program.prototype._bindMouse = function(s, buf) {
|
|||
: b === 5 ? 'right'
|
||||
: 'unknown';
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
|
||||
return;
|
||||
|
@ -752,7 +747,6 @@ Program.prototype.enableGpm = function() {
|
|||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
|
@ -772,7 +766,6 @@ Program.prototype.enableGpm = function() {
|
|||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
|
@ -792,7 +785,6 @@ Program.prototype.enableGpm = function() {
|
|||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
|
@ -812,7 +804,6 @@ Program.prototype.enableGpm = function() {
|
|||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
|
@ -830,7 +821,6 @@ Program.prototype.enableGpm = function() {
|
|||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
// self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue