10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00
QUESTDB_website/static/js/DebugMode.js

19 lines
404 B
JavaScript
Raw Normal View History

2020-06-10 15:18:39 +02:00
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()
}
}
}