You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The variable total at line 35 is currently initialized without being declared first, therefore causing a variable undefined error when the script is minified.
A fix would simply be changing total = 0 to var total = 0;
Thanks.
The text was updated successfully, but these errors were encountered:
The variable
total
at line 35 is currently initialized without being declared first, therefore causing a variable undefined error when the script is minified.A fix would simply be changing
total = 0
tovar total = 0;
Thanks.
The text was updated successfully, but these errors were encountered: