Fix small error in Doc.js

This commit is contained in:
Jonathan Puckey 2011-02-11 18:46:49 +01:00
parent 31c51ea9eb
commit d85217c40d

View file

@ -6,13 +6,13 @@ Doc = Base.extend({
this.size = new Size(canvas.offsetWidth, canvas.offsetHeight);
}
this.activeLayer = new Layer();
this.children = this.activeLayer;
this.layers = [this.activeLayer];
},
redraw: function() {
if(this.canvas) {
this.ctx.clearRect(0, 0, this.size.width, this.size.height);
for(var i = 0, l = this.children.length; i < l; i++) {
this.children[i].draw(this.ctx);
for(var i = 0, l = this.layers.length; i < l; i++) {
this.layers[i].draw(this.ctx);
}
}
}