mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-03 20:53:59 +01:00
15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
class processingIndicator{
|
|
static get isActive(){
|
|
return document.body.classList.contains("loading")
|
|
}
|
|
static set isActive(value){
|
|
if(value!=this.isActive){
|
|
if(value){
|
|
document.body.classList.add("loading")
|
|
}
|
|
else{
|
|
document.body.classList.remove("loading")
|
|
}
|
|
}
|
|
}
|
|
} |