mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 19:28:14 -06:00
FIX: Image preview zindex error
Change-Id: Id4119e9047efbd5f7642b1d84af5f4bf8dbbd5f7 (cherry picked from commit 2715ae3a384137b5db73faf50b0c1a651f318f5e)
This commit is contained in:
parent
1f54aaf22b
commit
c1c990051d
1 changed files with 7 additions and 7 deletions
|
@ -284,13 +284,13 @@ function ShowModelInfo( pModel )
|
||||||
}
|
}
|
||||||
|
|
||||||
$('#ModelPreviewList').html(htmlPreview);
|
$('#ModelPreviewList').html(htmlPreview);
|
||||||
$('#ModelPreviewList').viewer({
|
$('#Model_Preview_Image').viewer({
|
||||||
title: false,
|
title: false,
|
||||||
fullsreen: false,
|
fullsreen: false,
|
||||||
zIndex: 999999,
|
zIndex: 11,
|
||||||
interval: 3000
|
interval: 3000
|
||||||
});
|
});
|
||||||
$('#ModelPreviewList').viewer('update');
|
$('#Model_Preview_Image').viewer('update');
|
||||||
|
|
||||||
//Initial Swiper
|
//Initial Swiper
|
||||||
if(TotalPreview==1)
|
if(TotalPreview==1)
|
||||||
|
@ -386,7 +386,7 @@ function ShowFileInfo( pFile )
|
||||||
$('.ImageIcon').viewer({
|
$('.ImageIcon').viewer({
|
||||||
title: false,
|
title: false,
|
||||||
fullsreen: false,
|
fullsreen: false,
|
||||||
zIndex: 999999,
|
zIndex: 11,
|
||||||
interval: 3000
|
interval: 3000
|
||||||
});
|
});
|
||||||
$('.ImageIcon').viewer('update');
|
$('.ImageIcon').viewer('update');
|
||||||
|
@ -501,13 +501,13 @@ function ShowProfilelInfo( pProfile )
|
||||||
}
|
}
|
||||||
|
|
||||||
$('#ProfilePreviewList').html(htmlPreview);
|
$('#ProfilePreviewList').html(htmlPreview);
|
||||||
$('#ProfilePreviewList').viewer({
|
$('#Profile_Preview_Image').viewer({
|
||||||
title: false,
|
title: false,
|
||||||
fullsreen: false,
|
fullsreen: false,
|
||||||
zIndex: 999999,
|
zIndex: 11,
|
||||||
interval: 3000
|
interval: 3000
|
||||||
});
|
});
|
||||||
$('#ProfilePreviewList').viewer("update");
|
$('#Profile_Preview_Image').viewer("update");
|
||||||
|
|
||||||
//Init Profile Swiper
|
//Init Profile Swiper
|
||||||
if(TotalPreview==1)
|
if(TotalPreview==1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue