Subh775 commited on
Commit
92dde2d
·
1 Parent(s): 8d7da35

onboaridng popup

Browse files
Files changed (1) hide show
  1. frontend/initial.html +3 -4
frontend/initial.html CHANGED
@@ -445,11 +445,10 @@
445
  }
446
  function closeOnboarding() {
447
  document.getElementById('onboard-overlay').style.display = 'none';
448
- localStorage.setItem('uf_onboarded', '1');
449
- }
450
- if (!localStorage.getItem('uf_onboarded')) {
451
- document.getElementById('onboard-overlay').style.display = 'flex';
452
  }
 
 
 
453
  </script>
454
  </body>
455
 
 
445
  }
446
  function closeOnboarding() {
447
  document.getElementById('onboard-overlay').style.display = 'none';
 
 
 
 
448
  }
449
+
450
+ // Show onboarding on every page load
451
+ document.getElementById('onboard-overlay').style.display = 'flex';
452
  </script>
453
  </body>
454