mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Fix comment.
This commit is contained in:
parent
cabe253dea
commit
71a7781bdd
1 changed files with 1 additions and 1 deletions
|
@ -499,8 +499,8 @@ new function() {
|
||||||
importer = importers[type],
|
importer = importers[type],
|
||||||
item = importer && importer(node, type, options),
|
item = importer && importer(node, type, options),
|
||||||
data = type !== '#document' && node.getAttribute('data-paper-data');
|
data = type !== '#document' && node.getAttribute('data-paper-data');
|
||||||
// See importGroup() for an explanation of this filtering:
|
|
||||||
if (item) {
|
if (item) {
|
||||||
|
// See importGroup() for an explanation of this filtering:
|
||||||
if (!(item instanceof Group))
|
if (!(item instanceof Group))
|
||||||
item = applyAttributes(item, node);
|
item = applyAttributes(item, node);
|
||||||
if (options.expandShapes && item instanceof Shape) {
|
if (options.expandShapes && item instanceof Shape) {
|
||||||
|
|
Loading…
Reference in a new issue