This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
viscord/cordova/www/index.js

19 lines
426 B
JavaScript
Raw Permalink Normal View History

2022-07-25 03:33:49 -04:00
document.addEventListener('deviceready', onDeviceReady, false);
function onDeviceReady() {
// alert(cordova.platformId + " " + cordova.version);
var my_awesome_script = document.createElement('script');
my_awesome_script.setAttribute('src', 'app.js');
my_awesome_script.setAttribute('type', 'module');
my_awesome_script.setAttribute('crossorigin', true);
document.head.appendChild(my_awesome_script);
}