From cc201655af5f2492b3904b3468fa9cd8e177b04d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sun, 20 Oct 2013 01:54:53 +0200 Subject: [PATCH] Fix comment. --- src/path/CompoundPath.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/path/CompoundPath.js b/src/path/CompoundPath.js index 059535e3..8151b16a 100644 --- a/src/path/CompoundPath.js +++ b/src/path/CompoundPath.js @@ -226,9 +226,9 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ // options.compoundChildren allows to specifically do so, see below. var res = _hitTest.base.call(this, point, Base.merge(options, { fill: false })); - // If asked to query all children seperately, perform the same loop as - // Item#hitTest() now on the compound children. if (!res) { + // If asked to query all children seperately, perform the same loop + // as Item#hitTest() now on the compound children. if (options.compoundChildren) { var children = this._children; for (var i = children.length - 1; i >= 0 && !res; i--)