mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
25 lines
608 B
HTML
25 lines
608 B
HTML
<!DOCTYPE html>
|
|
<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 = 'gamepad.js';
|
|
if (isProduction()) {
|
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
|
}
|
|
s.src = src;
|
|
document.body.appendChild(s);
|
|
});
|
|
</script>
|