I've set up a simple SVG with two polylines and am trying to morph between them using GSAP's MorphSVG. https://greensock.com/morphSVG
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 960 560" style="enable-background:new 0 0 960 560;" xml:space="preserve">
<polyline id="plainLine" class="st0" points="298,279 387.5,279 469.2,279 596,279"> </polyline>
<polyline id="roofLine" class="st0" points="297.6,282 385.8,257.9 469.2,279 596,279"> </polyline>
</svg>
Based on the documenation, it seems it should be as simple as:
TweenLite.to("#plainLine", 1, {morphSVG:"#roofLine"});
But try as I might, nothing is happening...
Here's a fiddle with my code: