summaryrefslogtreecommitdiffstats
path: root/theme
diff options
context:
space:
mode:
Diffstat (limited to 'theme')
-rw-r--r--theme/dive_export.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/dive_export.html b/theme/dive_export.html
index 524f39a69..91b0ef749 100644
--- a/theme/dive_export.html
+++ b/theme/dive_export.html
@@ -53,7 +53,7 @@ function load_scripts()
var advanced_shown=false;
function showdiv(){
var search = document.getElementById("advanced_search");
- if(advanced_shown==false){
+ if(advanced_shown===false){
search.style.display='block';
advanced_shown=true;
}
@@ -63,7 +63,7 @@ function showdiv(){
}
}
function hideAdvanced(){
- if(advanced_shown==false) return;
+ if(advanced_shown===false) return;
var search = document.getElementById("advanced_search");
search.style.display='none';
advanced_shown=false;