You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Adjust mobile css settings
if (cc.sys.isMobile) {
var fontStyle = document.createElement("style");
fontStyle.type = "text/css";
document.body.appendChild(fontStyle);
fontStyle.textContent = "body,canvas,div{ -moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;"
+ "-webkit-tap-highlight-color:rgba(0,0,0,0);}";
}
_initSys is executed right away, when library is loaded.
When library is loaded from <head> there is no document.body yet! So the code above fails with error at document.body.appendChild
The text was updated successfully, but these errors were encountered:
_initSys has following chunk of code:
_initSys is executed right away, when library is loaded.
When library is loaded from <head> there is no document.body yet! So the code above fails with error at
document.body.appendChild
The text was updated successfully, but these errors were encountered: