Skip to content

Instantly share code, notes, and snippets.

@MikeGrace
Created September 19, 2011 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeGrace/59a8d5dc6b7288309aca to your computer and use it in GitHub Desktop.
Save MikeGrace/59a8d5dc6b7288309aca to your computer and use it in GitHub Desktop.
protovis.js svg hack on line 5058
for (var name in style) {
try {
var value = style[name];
if (value == this.implicit.css[name]) value = null;
if (value == null) e.style.removeProperty(name);
else e.style[name] = value;
} catch (e) { print(e); print(e.style);}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment