Fix maximisation of Potlatch

This commit is contained in:
Tom Hughes 2012-08-29 15:37:26 +01:00
parent 18238dd31e
commit 420ebbbb87

View file

@ -27,11 +27,11 @@
$("#greeting").hide();
$("#tabnav").hide();
$("#content").css("top", "10px");
$("#content").css("top", "0px");
<% if t('html.dir') == "ltr" -%>
$("#content").css("left", "10px");
$("#content").css("left", "0px");
<% else -%>
$("#content").css("right", "10px");
$("#content").css("right", "0px");
<% end -%>
handleResize();
@ -42,11 +42,11 @@
$("#greeting").show();
$("#tabnav").show();
$("#content").css("top", "35px");
$("#content").css("top", "30px");
<% if t('html.dir') == "ltr" -%>
$("#content").css("left", "192px");
$("#content").css("left", "185px");
<% else -%>
$("#content").css("right", "192px");
$("#content").css("right", "185px");
<% end -%>
handleResize();