Compare commits

..

No commits in common. "d38713e7ed3b2c2115c526717bcd88c4e3ae584a" and "57513da827fa5dec5f1e87fd20d578aaf90b2b77" have entirely different histories.

3 changed files with 0 additions and 26 deletions

View File

@ -177,7 +177,6 @@
});
</script>
</ul>
<div onclick="toggleAutoReload();" class="text-secondary versionInfo nav flex-column position-absolute bottom-0 align-items-center w-100">AssetFlow Alpha V0.0.1 </div>
</nav>
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4" style="min-height: 100%">

View File

@ -12,10 +12,6 @@ body {
}
}
.versionInfo {
font-size: 0.75rem;
}
/** Safari */
@media not all and (min-resolution:.001dpcm) {

View File

@ -1,12 +1,5 @@
currentToasts = [];
var forceSkipReload = false;
forceSkipReload = localStorage.getItem('forceSkipReload') === 'true';
if(forceSkipReload) {
setTimeout(() => {
createNewToast('Auto reload still disabled, click version number to reenable.', 'text-bg-warning', 3000, false);
}, 1000);
}
/**
* Generic function to create a new toast
* @param {String} message The message to be displayed
@ -55,17 +48,3 @@ function normalizeToast() {
$('#generalToast').removeClass('text-bg-warning');
$('#generalToast').removeClass('text-bg-info');
}
/**
* Function to handle the "secret" function to globally disable auto reload
*/
function toggleAutoReload() {
forceSkipReload = !forceSkipReload;
if(forceSkipReload) {
createNewToast('Auto reload disabled', 'text-bg-warning', 1500, false);
} else {
createNewToast('Auto reload enabled', 'text-bg-success', 1500, false);
}
// Store the value in local storage
localStorage.setItem('forceSkipReload', forceSkipReload);
}