ebiten/docs/examples/mosaic.content.html
2016-08-28 03:50:06 +09:00

25 lines
607 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 = 'mosaic.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
}
s.src = src;
document.body.appendChild(s);
});
</script>