chore: Clarify usage of window fields in globals.js

/puter/src/globals.js
  124:65  error  'first_visit_animation' is not defined  no-undef
This commit is contained in:
Sam Atkins 2024-05-01 17:19:53 +01:00
parent 766da39138
commit e5cd2bed87

View File

@ -121,7 +121,7 @@ window.first_visit_animation = false;
window.show_twitter_link = true; window.show_twitter_link = true;
window.animate_window_opening = true; window.animate_window_opening = true;
window.animate_window_closing = true; window.animate_window_closing = true;
window.desktop_loading_fade_delay = (window.first_visit_ever && first_visit_animation ? 6000 : 1000); window.desktop_loading_fade_delay = (window.first_visit_ever && window.first_visit_animation ? 6000 : 1000);
window.watchItems = []; window.watchItems = [];
window.appdata_signatures = {}; window.appdata_signatures = {};
window.appCallbackFunctions = []; window.appCallbackFunctions = [];