svgObjectModelGenerator icon indicating copy to clipboard operation
svgObjectModelGenerator copied to clipboard

Group should take the class (or attributes) if its children share it.

Open DmitryBaranovskiy opened this issue 9 years ago • 0 comments

<g>
    <circle class="cls-1"/>
    <rect class="cls-1"/>
</g>

Should be

<g class="cls-1">
    <circle/>
    <rect/>
</g>

DmitryBaranovskiy avatar Jan 23 '15 08:01 DmitryBaranovskiy