DetGC commited on
Commit
23077ed
·
verified ·
1 Parent(s): f8b08b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -222,5 +222,18 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty', fill_width=True, css=CSS)
222
 
223
  gr.Markdown("")
224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
225
  #demo.queue(default_concurrency_limit=200, max_size=200)
226
  demo.launch(show_api=False, max_threads=400)
 
222
 
223
  gr.Markdown("")
224
 
225
+ js_func = """
226
+ function refresh() {
227
+ const url = new URL(window.location);
228
+
229
+ if (url.searchParams.get('__theme') !== 'dark') {
230
+ url.searchParams.set('__theme', 'dark');
231
+ window.location.href = url.href;
232
+ }
233
+ }
234
+ """
235
+
236
+ with gr.Blocks(js=js_func) as demo:
237
+
238
  #demo.queue(default_concurrency_limit=200, max_size=200)
239
  demo.launch(show_api=False, max_threads=400)