Zeile 10 | Zeile 10 |
---|
this.options = options; if(!options.className) {
|
this.options = options; if(!options.className) {
|
alert('You need to specify either a className in the options.');
| alert('You need to specify a className in the options.');
|
return false; } this.className = options.className;
| return false; } this.className = options.className;
|
Zeile 63 | Zeile 63 |
---|
} this.currentElement = element.id; this.timeout = setTimeout(this.showTextbox.bind(this), 1200);
|
} this.currentElement = element.id; this.timeout = setTimeout(this.showTextbox.bind(this), 1200);
|
element.onmouseup = this.onMouseUp.bindAsEventListener(this);
| document.onmouseup = this.onMouseUp.bindAsEventListener(this);
|
return false; },
| return false; },
|