Closed lukasoppermann closed 9 years ago
Okay, well, I just used the function from your docs. My point is basically, that it should be noted, that an transformsvg function can be added this way. What would you recommend as a change so you would merge it?
@lukasoppermann my example from docs passes svg to the callback:
function transformSvg ($svg, done) {
$svg.attr('style', 'display:none')
done(null, $svg)
}
Can you update your example with this transformSvg
?
Sure, just like this?
This example makes it much more clear how to use transformSvg when not using the inject method.