Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
AroriaNetwork
GitHub Repository: AroriaNetwork/3kho-backup
Path: blob/main/projects/missiles/src/util.js
1835 views
1
//==============================================================================
2
// Utility Functions
3
//==============================================================================
4
5
MG.util = {} ;
6
7
MG.util.hideMouse = function () {
8
var i;
9
for (i=0; i<document.styleSheets.length; i++) {
10
var styleSheet = document.styleSheets[i];
11
12
if (styleSheet.title === 'style-hide-mouse') {
13
styleSheet.disabled = false;
14
}
15
}
16
};
17
18
MG.util.showMouse = function () {
19
var i;
20
for (i=0; i<document.styleSheets.length; i++) {
21
var styleSheet = document.styleSheets[i];
22
23
if (styleSheet.title === 'style-hide-mouse') {
24
styleSheet.disabled = true;
25
}
26
}
27
};
28
29