Fixed bug on clonePixels_ need to stop commiting and pushing without testing ...

This commit is contained in:
juliandescottes 2012-09-08 17:44:55 +02:00
parent 93e479fa11
commit 07369af9df

View File

@ -48,7 +48,7 @@
ns.Frame.prototype.clonePixels_ = function (pixels) {
var clonedPixels = [];
for (var col = 0 ; col < pixels.length ; col++) {
clonedPixels[col] = pixels[col].slice(0 , this.getHeight());
clonedPixels[col] = pixels[col].slice(0 , pixels[col].length-1);
}
return clonedPixels;
};