Merge pull request #10 from vladmandic/patch-1

fix error on access of optional component
pull/13/head
AlUlkesh 2023-02-04 19:55:35 +01:00 committed by GitHub
commit 88bc2d17d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 12 deletions

View File

@ -1,7 +1,5 @@
var images_history_click_image = function(){ var images_history_click_image = function(){
console.log("in images_history_click_image !") if (!this.classList?.contains("transform")){
console.log(this.classList)
if (!this.classList.contains("transform")){
var gallery = images_history_get_parent_by_class(this, "images_history_cantainor"); var gallery = images_history_get_parent_by_class(this, "images_history_cantainor");
var buttons = gallery.querySelectorAll(".gallery-item"); var buttons = gallery.querySelectorAll(".gallery-item");
var i = 0; var i = 0;
@ -75,9 +73,6 @@ function images_history_set_image_info(button){
} }
function images_history_get_current_img(tabname, img_index, page_index){ function images_history_get_current_img(tabname, img_index, page_index){
console.log("tabName",tabname)
console.log("img_index",img_index)
console.log(tabname + '_images_history_set_index')
return [ return [
tabname, tabname,
gradioApp().getElementById(tabname + '_images_history_set_index').getAttribute("img_index"), gradioApp().getElementById(tabname + '_images_history_set_index').getAttribute("img_index"),
@ -126,7 +121,6 @@ function images_history_turnpage(tabname){
}); });
} }
function images_history_init(){ function images_history_init(){
var tabnames = gradioApp().getElementById("images_history_tabnames_list") var tabnames = gradioApp().getElementById("images_history_tabnames_list")
if (tabnames){ if (tabnames){
@ -196,8 +190,3 @@ document.addEventListener("DOMContentLoaded", function() {
}); });
mutationObserver.observe(gradioApp(), { childList:true, subtree:true }); mutationObserver.observe(gradioApp(), { childList:true, subtree:true });
}); });