diff options
author | snowyplover <the.estuary@gmail.com> | 2015-11-15 05:58:06 -0800 |
---|---|---|
committer | snowyplover <the.estuary@gmail.com> | 2015-11-15 05:58:06 -0800 |
commit | b568241b219009aafae7f2521d381a5a0187d63d (patch) | |
tree | c60179378f849b5452d47f0fa1d791a69de3c19b /README.md | |
parent | e5a0020d1a4e78fc31446996f287fb133bc67df5 (diff) | |
download | svg.js-b568241b219009aafae7f2521d381a5a0187d63d.tar.gz svg.js-b568241b219009aafae7f2521d381a5a0187d63d.zip |
Fix description of toParent()
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1609,7 +1609,7 @@ rect.putIn(group) //-> returns group __`returns`: `element`__ ### toParent() -Moves an element to a different parent (similar to `add`), but without changing its visual representation. All transformations are merged and applied to the element. +Moves an element to a different parent (similar to `addTo`), but without changing its visual representation. All transformations are merged and applied to the element. ```javascript rect.toParent(group) // looks the same as before |