Add getter/setter for Path#closed.

This commit is contained in:
Jürg Lehni 2011-04-30 23:22:29 +01:00
parent bf3bd13540
commit 781b315808
5 changed files with 31 additions and 24 deletions

View file

@ -89,7 +89,7 @@ var CompoundPath = this.CompoundPath = PathItem.extend({
},
closePath: function() {
getCurrentPath(this).closed = true;
getCurrentPath(this).setClosed(true);
}
};