Fix #1347 : Export dialog box does not open in lightbox

This commit is contained in:
Romain Neutron
2013-07-17 11:55:34 +02:00
parent 2b6a284e9c
commit 6d8af80dee
3 changed files with 26 additions and 5 deletions

View File

@@ -1,9 +1,17 @@
var p4 = {
releasable:false
var p4 = p4 || {};
p4.releasable = false;
var bodySize = {
x:0,
y:0
};
$(document).ready(function(){
bodySize.y = $('#mainContainer').height();
bodySize.x = $('#mainContainer').width();
$(this).data('slideshow',false);
$(this).data('slideshow_ctime', false);
@@ -191,6 +199,8 @@ function is_shift_key(event)
function resize()
{
bodySize.y = $('#mainContainer').height();
bodySize.x = $('#mainContainer').width();
display_record($('#record_compare').css('visibility') != 'hidden');
}