Commit 931e5aeb authored by DepFA's avatar DepFA Committed by AUTOMATIC1111

initialize modal state from options

parent 2f35b1c6
...@@ -82,7 +82,6 @@ function showGalleryImage(){ ...@@ -82,7 +82,6 @@ function showGalleryImage(){
function modalZoomToggle(event){ function modalZoomToggle(event){
modalImage = gradioApp().getElementById("modalImage"); modalImage = gradioApp().getElementById("modalImage");
console.log(modalImage)
if( !modalImage.classList.contains('modalImageFullscreen') ){ if( !modalImage.classList.contains('modalImageFullscreen') ){
modalImage.classList.add('modalImageFullscreen'); modalImage.classList.add('modalImageFullscreen');
}else{ }else{
...@@ -102,6 +101,25 @@ onUiUpdate(function(){ ...@@ -102,6 +101,25 @@ onUiUpdate(function(){
if(fullImg_preview != null){ if(fullImg_preview != null){
fullImg_preview.forEach(galleryImageHandler); fullImg_preview.forEach(galleryImageHandler);
} }
if(Object.keys(opts).length != 0) return;
json_elem = gradioApp().getElementById('settings_json')
if(json_elem == null) return;
textarea = json_elem.querySelector('textarea')
jsdata = textarea.value
opts = JSON.parse(jsdata)
if(!window.lightbox_settings_applied){
window.lightbox_settings_applied = true;
if(opts.js_modal_lightbox_initialy_zoomed){
var imageModal = gradioApp().getElementById('modalImage');
if(imageModal){
imageModal.className = 'modalImageFullscreen';
}
}
}
}) })
document.addEventListener("DOMContentLoaded", function() { document.addEventListener("DOMContentLoaded", function() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment