Commit 04010187ef5bbee2b8d3302a6f74eac88ec6909b
1 parent
ce86bc01
fixed this issue in DA
Showing
1 changed file
with
3 additions
and
3 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -537,7 +537,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
537 | 537 | if (document.getElementById('daView') != null) { |
538 | 538 | |
539 | 539 | //0.4 added some stylesheets |
540 | - $('#daBodyview').css("height", $(window).outerHeight()); | |
540 | + $('#daBodyview').css("height", (parseInt($(window).outerHeight())-62-20)); | |
541 | 541 | |
542 | 542 | $('#daBodyview').css("width", $(window).outerWidth()); |
543 | 543 | |
... | ... | @@ -561,9 +561,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
561 | 561 | $rootScope.isLoading = true; |
562 | 562 | $rootScope.voId = $rootScope.getLocalStorageValue("currentBodyViewId"); |
563 | 563 | } |
564 | - $('#daBodyview').css("height", $(window).outerHeight()); | |
564 | + //$('#daBodyview').css("height", $(window).outerHeight()); | |
565 | 565 | |
566 | - $('#daBodyview').css("width", $(window).outerWidth()); | |
566 | + //$('#daBodyview').css("width", $(window).outerWidth()); | |
567 | 567 | |
568 | 568 | if ($('#daImagePanel').offset().top == 0) |
569 | 569 | $('#daImagePanel').css("top", '70px'); | ... | ... |