Skip to content

Commit

Permalink
wrong quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
felipevex committed Sep 4, 2017
1 parent 7a3aaff commit 76857bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions priori/view/text/PriText.hx
Expand Up @@ -116,7 +116,7 @@ class PriText extends PriDisplay {
if (this.dth.fontSize != value) {
if (value == null) {
this.dth.fontSize = DisplayHelperIgnition.INITIAL_FONT_SIZE;
this.dh.jselement.style.fontSize = "${DisplayHelperIgnition.INITIAL_FONT_SIZE}px";
this.dh.jselement.style.fontSize = '${DisplayHelperIgnition.INITIAL_FONT_SIZE}px';
} else {
this.dth.fontSize = value;
this.dh.jselement.style.fontSize = Std.int(value) + "px";
Expand Down Expand Up @@ -257,7 +257,7 @@ class PriText extends PriDisplay {
super.createElement();

this.dh.jselement.style.whiteSpace = "nowrap";
this.dh.jselement.style.fontSize = "${DisplayHelperIgnition.INITIAL_FONT_SIZE}px";
this.dh.jselement.style.fontSize = '${DisplayHelperIgnition.INITIAL_FONT_SIZE}px';
this.dh.jselement.style.width = "";
this.dh.jselement.style.height = "";
this.dh.jselement.style.textOverflow = "ellipsis";
Expand Down

0 comments on commit 76857bd

Please sign in to comment.