Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 8123254

Browse files
author
Charles Marion
committed
BUG: fixed bug #146 CSS Visu module
1 parent 3393492 commit 8123254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/visualize/public/js/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
var height = $(window).height()-100;
1414
var width = 800;
1515
var url = json.global.webroot+"/visualize/?itemId="+json.item.item_id+'&height='+height+'&width='+width;
16-
var html = '<div id="fullscreenVisualize" >';
16+
var html = '<div id="fullscreenVisualize" style="min-width:1200px">';
1717
html += '<div id="fullscreenPanel">';
1818
html += '<div style="float:left;margin-right:2px;" class="genericBigButton ">';
1919
html += '<a style="float:left;" class="closeVisuButton"><img style="float:left;margin-right:2px;" alt="" src="'+json.global.coreWebroot+'/public/images/icons/back.png">Back</a></div>';
@@ -108,7 +108,7 @@
108108
$('.MainDialog').hide();
109109
$('.TopDynamicBar').hide();
110110
$('.Topbar').show();
111-
$('.Header').hide();
111+
//$('.Header').hide();
112112
$('.SubWrapper').hide();
113113
$('#fullscreenVisualize a.closeVisuButton').click(function(){
114114
$('#fullscreenVisualize').remove();

0 commit comments

Comments
 (0)