Made the code look cleaner

This commit is contained in:
mauro-balades 2024-10-04 18:21:39 +02:00
parent 5822df61e5
commit 76d22a1f15
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
9 changed files with 429 additions and 410 deletions

View file

@ -1,4 +1,3 @@
var gZenOperatingSystemCommonUtils = {
kZenOSToSmallName: {
WINNT: 'windows',
@ -38,5 +37,11 @@ class ZenMultiWindowFeature {
console.error(e);
}
}
}
}
}
class ZenDOMOperatedFeature {
constructor() {
window.addEventListener('DOMContentLoaded', this.init.bind(this));
}
}