mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-12 20:18:59 +01:00
doc: Update example JS links
This commit is contained in:
parent
0d72b4e6c2
commit
306fd9aaa4
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = '{{.Example.Name}}.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'alphablending.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'audio.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'blocks.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'font.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'gamepad.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'hsv.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'hue.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'keyboard.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'masking.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'mosaic.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'noise.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'paint.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'perspective.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'piano.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'rotate.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
||||
var s = document.createElement('script');
|
||||
var src = 'sprites.js';
|
||||
if (isProduction()) {
|
||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||
src = 'https://dl.dropboxusercontent.com/u/3692507/ebiten.examples/' + src;
|
||||
}
|
||||
s.src = src;
|
||||
document.body.appendChild(s);
|
||||
|
Loading…
Reference in New Issue
Block a user