Added more demos and support for mixed-case properties (including a new 'debugger' property in Markdown files)
This commit is contained in:
parent
ef480867e9
commit
7ca64fcea5
162 changed files with 84341 additions and 345 deletions
|
|
@ -557,17 +557,20 @@ Mouse.prototype.clickMouse = function(iButton, fDown)
|
|||
if (this.fButton1 != fDown) {
|
||||
this.fButton1 = fDown;
|
||||
this.sendPacket(sDiag);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
case Mouse.BUTTON.RIGHT:
|
||||
if (this.fButton2 != fDown) {
|
||||
this.fButton2 = fDown;
|
||||
this.sendPacket(sDiag);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
this.printMessage(sDiag + ": ignored");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue