This commit is contained in:
Peli de Halleux 2016-04-08 16:12:26 -07:00
Родитель 86df36d5d2
Коммит 4ff50c6a05
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,10 @@ module TDev {
elt("root").style.height = h + "px";
if (phoneSimulationW > 0)
elt("root").style.width = w + "px";
elt("root").style.fontSize = Browser.isMobile ? topFontSize +"px" : "16px";
if (!Browser.isMobile) topFontSize = 16; // allow zooming;
elt("root").style.fontSize = topFontSize +"px";
var rootClass = portraitMode ? "portrait" : "landscape";
if (phoneMode) rootClass += " phone";