Remove unused matrix parameter in PlacedSymbol#_hitTest()

This commit is contained in:
Jürg Lehni 2014-04-03 09:19:36 +02:00
parent 720d691e16
commit ee7c604ec0

View file

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