aboutsummaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
Diffstat (limited to 'javascript')
-rw-r--r--javascript/ui.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/javascript/ui.js b/javascript/ui.js
index bfa72885..cfd0dcd3 100644
--- a/javascript/ui.js
+++ b/javascript/ui.js
@@ -1,9 +1,9 @@
// various functions for interation with ui.py not large enough to warrant putting them in separate files
-function go_dark_mode(){
+function set_theme(theme){
gradioURL = window.location.href
- if (!gradioURL.endsWith('?__theme=dark')) {
- window.location.replace(gradioURL + '?__theme=dark');
+ if (!gradioURL.includes('?__theme=')) {
+ window.location.replace(gradioURL + '?__theme=' + theme);
}
}