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
I guess if (typeof module != 'undefined') module.exports = definition() else if (typeof define == 'function' && typeof define.amd == 'object') define(definition) else this[name] = definition()
may make the problem , I can not get error detail and when I replace domready with a sample code bellow
function domready(fn) {
var readyState = document.readyState;
if (readyState === 'interactive' || readyState === 'complete') {
fn();
} else {
window.addEventListener('DOMContentLoaded', fn);
}
};
It will work!
Android Webview after 4.4 is based on chromium , I searched for more infos but there is not related message
DomReady
worked before the webview on Android 4.4 ,But not work for Android 5+The text was updated successfully, but these errors were encountered: