Make marginRight work in firefox

Summary:
`.style["margin-right"]` doesn't work in firefox, but
`.style.marginRight` does.

Test Plan:
- Look at `b\llap{f}` in chrome and firefox
- Make sure it looks the same (or at least very similar) in both

Reviewers: alpert

Reviewed By: alpert

Differential Revision: http://phabricator.khanacademy.org/D7476
This commit is contained in:
Emily Eisenberg 2014-03-17 23:44:36 -04:00
parent 1ae76a4813
commit 63fda74202
4 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ var makeText = function(value, style) {
metrics.depth);
if (metrics.italic > 0) {
var span = makeSpan([], [textNode]);
span.style["margin-right"] = metrics.italic + "em";
span.style.marginRight = metrics.italic + "em";
return span;
} else {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB