Don't clear canvas if debug mode
This commit is contained in:
@@ -76,6 +76,12 @@ init: function (id, width, height, keyDown, keyUp, mouseDown, mouseUp) {
|
||||
|
||||
clear: function () {
|
||||
Canvas.ctx.clearRect(0, 0, Canvas.c_wx, Canvas.c_wy);
|
||||
var c = $(Canvas.id);
|
||||
c.width = 640;
|
||||
c.height = 20;
|
||||
},
|
||||
|
||||
stop: function () {
|
||||
var c = $(Canvas.id);
|
||||
document.removeEvents('keydown');
|
||||
document.removeEvents('keyup');
|
||||
@@ -85,9 +91,6 @@ clear: function () {
|
||||
/* Work around right and middle click browser behaviors */
|
||||
document.removeEvents('click');
|
||||
document.body.removeEvents('contextmenu');
|
||||
|
||||
c.width = 640;
|
||||
c.height = 20;
|
||||
},
|
||||
|
||||
draw: function () {
|
||||
|
||||
Reference in New Issue
Block a user