Commit 85e9e4dc authored by Evan W. Patton's avatar Evan W. Patton Committed by Jeffrey Schiller

Make PNG exports have transparent background

Change-Id: I7632af43369c42eecc07f2098bb2d4cbf8eb50fe
parent 653d8d27
...@@ -113,7 +113,7 @@ goog.require('goog.Timer'); ...@@ -113,7 +113,7 @@ goog.require('goog.Timer');
clone.setAttribute("width", width); clone.setAttribute("width", width);
clone.setAttribute("height", height); clone.setAttribute("height", height);
clone.setAttribute("style", 'background-color: #FFFFFF'); clone.setAttribute("style", 'background-color: rgba(255, 255, 255, 0);');
outer.appendChild(clone); outer.appendChild(clone);
var css = styles(el, options.selectorRemap); var css = styles(el, options.selectorRemap);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment