mirror of
https://github.com/danbulant/console-hub
synced 2026-05-19 12:28:47 +00:00
10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
function startGame(int){
|
|
if(int == 0){//SLIMEY JUMP
|
|
var game = document.createElement('iframe');
|
|
game.id = 'frame';
|
|
game.src = "https://v6p9d9t4.ssl.hwcdn.net/html/1493204/index.html";
|
|
game.style.position = 'fixed';
|
|
game.style.width = '100%';
|
|
game.style.zIndex = '990';
|
|
}
|
|
}
|