Skip to content

Commit

Permalink
missed a file.
Browse files Browse the repository at this point in the history
Signed-off-by: Grant Skinner <info@gskinner.com>
  • Loading branch information
gskinner committed Jan 17, 2012
1 parent 71fb4be commit 1604283
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/easeljs/display/DisplayObject.js
Expand Up @@ -675,6 +675,16 @@ var p = DisplayObject.prototype;
ctx.shadowOffsetY = shadow.offsetY;
ctx.shadowBlur = shadow.blur;
}


/**
* @method _tick
* @protected
* @param Boolean advance Indicates whether any related animations should advance.
**/
p._tick = function(advance) {
if (this.tick) { this.tick(); }
}

/**
* @method _testHit
Expand Down

0 comments on commit 1604283

Please sign in to comment.