mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
32 lines
856 B
HTML
32 lines
856 B
HTML
|
<!DOCTYPE html>
|
||
|
<meta charset="utf-8">
|
||
|
<script>
|
||
|
'use strict';
|
||
|
window.addEventListener('load', function() {
|
||
|
function isProduction() {
|
||
|
var l = window.top.location;
|
||
|
if (l.hash === '#_production') {
|
||
|
return true;
|
||
|
}
|
||
|
if (l.hostname === 'localhost' || l.hostname === '127.0.0.1') {
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
var s = document.createElement('script');
|
||
|
var src = 'highdpi.js';
|
||
|
if (isProduction()) {
|
||
|
src = 'https://hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||
|
}
|
||
|
s.src = src;
|
||
|
s.onload = function() {
|
||
|
var notice = document.getElementById('notice');
|
||
|
notice.parentNode.removeChild(notice);
|
||
|
};
|
||
|
document.body.appendChild(s);
|
||
|
});
|
||
|
</script>
|
||
|
<title>(Example)</title>
|
||
|
<p id="notice" style="color: white;">Now Loading...</p>
|