No code repeat

This commit is contained in:
apolinario 2022-12-10 12:51:40 +01:00
parent 8eb638cdd3
commit 37139d8aac

View File

@ -1,5 +1,6 @@
function gradioApp(){ function gradioApp() {
return !!document.getElementsByTagName('gradio-app')[0].shadowRoot ? document.getElementsByTagName('gradio-app')[0].shadowRoot : document; const gradioShadowRoot = document.getElementsByTagName('gradio-app')[0].shadowRoot
return !!gradioShadowRoot ? gradioShadowRoot : document;
} }
function get_uiCurrentTab() { function get_uiCurrentTab() {