Skip to content

Commit

Permalink
Fixed #8: Removed hack in forge.jquery.js to adjust document content …
Browse files Browse the repository at this point in the history
…height
  • Loading branch information
gastaldi committed May 6, 2015
1 parent 9dc1406 commit 49189f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/js/lib/forge.jquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ function initializeUI() {
}

// If this is a document page, init column sizing for tablet/desktop size screens
if($('.doc-content').length && $(window).outerWidth() > 767) {
docContentHeightFix();
$(window).resize(function(){
if($(window).outerWidth() > 767) {
docContentHeightFix();
}
});
}
// if($('.doc-content').length && $(window).outerWidth() > 767) {
// docContentHeightFix();
// $(window).resize(function(){
// if($(window).outerWidth() > 767) {
// docContentHeightFix();
// }
// });
// }

// Determine whether the language selection menu is present
if($('.language-select-container').length) {
Expand Down

0 comments on commit 49189f0

Please sign in to comment.