Skip to content

Commit

Permalink
update release.
Browse files Browse the repository at this point in the history
  • Loading branch information
themadcreator committed Mar 17, 2015
1 parent ff8c4bb commit fa55613
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/0.2.3/seen.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ class seen.SvgTextPainter

str = ''
for key, value of style
str += "#{key}:#{value};"
if value? then str += "#{key}:#{value};"
el.setAttribute('style', str)

el.textContent = text
Expand Down
4 changes: 3 additions & 1 deletion dist/0.2.3/seen.js
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,9 @@
str = '';
for (key in style) {
value = style[key];
str += "" + key + ":" + value + ";";
if (value != null) {
str += "" + key + ":" + value + ";";
}
}
el.setAttribute('style', str);
return el.textContent = text;
Expand Down
2 changes: 1 addition & 1 deletion dist/0.2.3/seen.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/0.2.3/seen.min.js

Large diffs are not rendered by default.

0 comments on commit fa55613

Please sign in to comment.