Skip to content

Commit

Permalink
Fix sizing of HTML contents in smartmobile
Browse files Browse the repository at this point in the history
We absolutely can't use height = 100% because it destroys the ability to
position the page below the headers.
  • Loading branch information
slusarz committed Oct 16, 2013
1 parent e9da1f3 commit 45e13a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/js/smartmobile.js
Expand Up @@ -1638,7 +1638,7 @@ var IMP_JS = {
iframeResize: function(id)
{
id = $(id);
id.height('100%').height(id.contents().height() + 25);
id.height(id.contents().height());
},

/**
Expand Down

0 comments on commit 45e13a9

Please sign in to comment.