10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
QUESTDB_website/js/DebugMode.js
2020-11-24 18:21:58 +00:00

19 lines
404 B
JavaScript

class DebugMode {
static get Enabled() {
var debug = window.sessionStorage.getItem("debug")
if (debug == null) {
return false
}
else {
return Boolean(JSON.parse(debug))
}
}
static set Enabled(value) {
const newval = Boolean(value)
if (this.Enabled !== newval) {
window.sessionStorage.setItem("debug", newval)
window.location.reload()
}
}
}