mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
Fix #1347 : Export dialog box does not open in lightbox
This commit is contained in:
@@ -122,6 +122,7 @@ $groups = array(
|
||||
, '//include/jslibs/jquery.cookie.js'
|
||||
, '//include/jslibs/jquery.contextmenu_scroll.js'
|
||||
, '//include/jquery.common.js'
|
||||
, '//skins/prod/jquery.Dialog.js'
|
||||
, '//skins/lightbox/jquery.lightbox.js'
|
||||
, '//include/jslibs/flowplayer/flowplayer-3.2.11.min.js'
|
||||
),
|
||||
@@ -133,6 +134,7 @@ $groups = array(
|
||||
, '//include/jslibs/jquery.cookie.js'
|
||||
, '//include/jslibs/jquery.contextmenu_scroll.js'
|
||||
, '//include/jquery.common.js'
|
||||
, '//skins/prod/jquery.Dialog.js'
|
||||
, '//skins/lightbox/jquery.lightbox.ie6.js'
|
||||
, '//include/jslibs/flowplayer/flowplayer-3.2.11.min.js'
|
||||
),
|
||||
|
@@ -1,5 +1,10 @@
|
||||
var p4 = {
|
||||
releasable:false
|
||||
var p4 = p4 || {};
|
||||
|
||||
p4.releasable = false;
|
||||
|
||||
var bodySize = {
|
||||
x:0,
|
||||
y:0
|
||||
};
|
||||
|
||||
$(window).bind('beforeunload', function(){
|
||||
@@ -13,7 +18,8 @@ $(window).bind('beforeunload', function(){
|
||||
});
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
bodySize.y = $('#mainContainer').height();
|
||||
bodySize.x = $('#mainContainer').width();
|
||||
|
||||
$(window).bind('resize',function(){
|
||||
resize();
|
||||
@@ -21,6 +27,9 @@ $(document).ready(function(){
|
||||
|
||||
function resize()
|
||||
{
|
||||
|
||||
bodySize.y = $('#mainContainer').height();
|
||||
bodySize.x = $('#mainContainer').width();
|
||||
var h = $(window).height();
|
||||
var w = $(window).width();
|
||||
|
||||
|
@@ -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');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user