Cleanup
This commit is contained in:
parent
709094455e
commit
7f661fdd81
@ -23,6 +23,7 @@ body {
|
||||
font-size: 14px;
|
||||
line-height: 1.42857143;
|
||||
overflow-y: auto;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.term {
|
||||
|
@ -22,6 +22,8 @@ class Client {
|
||||
this.popup = new Popup();
|
||||
this.lastMousePos = null;
|
||||
this.lastRange = null;
|
||||
this.activateKey = 16;
|
||||
this.activateBtn = 2;
|
||||
this.enabled = false;
|
||||
this.options = {};
|
||||
|
||||
@ -40,21 +42,21 @@ class Client {
|
||||
}
|
||||
|
||||
onKeyDown(e) {
|
||||
if (this.enabled && this.lastMousePos !== null && (e.keyCode === 16 || e.charCode === 16)) {
|
||||
if (this.enabled && this.lastMousePos !== null && (e.keyCode === this.activateKey || e.charCode === this.activateKey)) {
|
||||
this.searchAt(this.lastMousePos);
|
||||
}
|
||||
}
|
||||
|
||||
onMouseMove(e) {
|
||||
this.lastMousePos = {x: e.clientX, y: e.clientY};
|
||||
if (this.enabled && (e.shiftKey || e.which === 2)) {
|
||||
if (this.enabled && (e.shiftKey || e.which === this.activateBtn)) {
|
||||
this.searchAt(this.lastMousePos);
|
||||
}
|
||||
}
|
||||
|
||||
onMouseDown(e) {
|
||||
this.lastMousePos = {x: e.clientX, y: e.clientY};
|
||||
if (this.enabled && (e.shiftKey || e.which === 2)) {
|
||||
if (this.enabled && (e.shiftKey || e.which === this.activateBtn)) {
|
||||
this.searchAt(this.lastMousePos);
|
||||
} else {
|
||||
this.hidePopup();
|
||||
|
Loading…
Reference in New Issue
Block a user