Skip to content

Commit

Permalink
fix(js): fix interval: 100s -> 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
WaitSpringQW committed May 31, 2024
1 parent bcb30d7 commit 5379b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/skins.citizen.scripts/skin.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function main( window ) {
// Auto-unset scheme
setTimeout( function () {
document.documentElement.classList.remove( 'citizen-loading' );
}, 1e5 );
}, 10 * 1000 );
}, false );

window.addEventListener( 'unload', function () {
Expand Down

0 comments on commit 5379b0c

Please sign in to comment.