Skip to content
Snippets Groups Projects
Commit 9f8f328f authored by echicken's avatar echicken
Browse files

remove log barf

parent 520dc3a6
No related branches found
No related tags found
No related merge requests found
......@@ -351,7 +351,6 @@ Tree.prototype.getcmd = function(cmd) {
if(retval === this.__values__.NOT_HANDLED) {
if (cmd.mouse !== null && cmd.mouse.x >= this.frame.x && cmd.mouse.x < this.frame.x + this.frame.width && cmd.mouse.y >= this.frame.y && cmd.mouse.y < this.frame.y + this.frame.height) {
var my = cmd.mouse.y - this.frame.y;
log(JSON.stringify(cmd) + ',' + my + ',' + this.offset + ',' + this.index);
switch (cmd.mouse.button) {
case 0: // left click
while (this.offset + my > this.index && this.down() == this.__values__.HANDLED) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment