You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
General Updates
Added the onInitialize event emitter for the following elements. This will allow users to retrieve and manipulate with the created elements programmatically, and use all the functionality that SVG.js library provides.
svg-container element, which will return created SVG Container element when the container is initialized.
svg-line element, which will return created SVG Line element when the line is initialized.
svg-rect element, which will return created SVG Rectangular element when the rectangular is initialized.
svg-circle element, which will return created SVG Circle element when the circle is initialized.
svg-ellipse element, which will return created SVG Ellipse element when the ellipse is initialized.
svg-polyline element, which will return created SVG Polyline element when the polyline is initialized.
svg-polygon element, which will return created SVG Polygon element when the polygon is initialized.
svg-image element, which will return created SVG Image element when the image is initialized.
svg-path element, which will return created SVG Path element when the path is initialized.
svg-text element, which will return created SVG Text element when the text is initialized.
Updated documentation and demo to contain the latest changes.