Fix mistake in previous commit.

This commit is contained in:
Jonathan Puckey 2012-11-23 20:55:46 +01:00
parent 43b3ac6beb
commit 151f7026e1

View file

@ -29,7 +29,7 @@ var PlacedItem = this.PlacedItem = Item.extend(/** @lends PlacedItem# */{
_hitTest: function(point, options, matrix) {
var hitResult = this._symbol._definition.hitTest(
point._transformPoint(this.matrix), options, matrix);
this.matrix._transformPoint(point), options, matrix);
// TODO: When the symbol's definition is a path, should hitResult contain
// information like HitResult#curve?
if (hitResult)