fix code style.

This commit is contained in:
brn 2014-05-21 09:27:10 +09:00
commit 2d39aca4a7

View file

@ -88,9 +88,9 @@ var FontMetrics = exports.FontMetrics = function(parentEl, interval) {
style.whiteSpace = "pre";
if (useragent.isIE < 8) {
style['font-family'] = 'inherit';
style["font-family"] = "inherit";
} else {
style.font = 'inherit';
style.font = "inherit";
}
style.overflow = isRoot ? "hidden" : "visible";
};