mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
11 lines
466 B
HTML
11 lines
466 B
HTML
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src='//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>
|
|
<script type='text/javascript'>
|
|
var checkIncludes = function () {
|
|
if( window.$ === undefined ) {
|
|
document.getElementById('info').innerHTML = 'Not all required libraries have been loaded. Are you connected to the internet?';
|
|
}
|
|
};
|
|
window.addEventListener( "load" , checkIncludes, true );
|
|
</script>
|