more docs, especially for Util and Tween

This commit is contained in:
Eric Rowell
2013-05-18 10:40:05 -07:00
parent 993ffd7b0e
commit 2ea5f83204
7 changed files with 219 additions and 33 deletions

View File

@@ -424,7 +424,7 @@
_fill: function(shape) {
var context = this.context;
context.save();
context.fillStyle = '#' + shape.colorKey;
context.fillStyle = shape.colorKey;
shape._fillFuncHit(context);
context.restore();
},
@@ -437,7 +437,7 @@
this._applyLineCap(shape);
context.save();
context.lineWidth = strokeWidth || 2;
context.strokeStyle = '#' + shape.colorKey;
context.strokeStyle = shape.colorKey;
shape._strokeFuncHit(context);
context.restore();
}