Lol
This commit is contained in:
parent
6ee9e6e47e
commit
f136ce833f
|
@ -183,6 +183,10 @@ Coin.prototype.get = function() {
|
||||||
if (!this.got) {
|
if (!this.got) {
|
||||||
this.got = true;
|
this.got = true;
|
||||||
|
|
||||||
|
if (typeof Coin.onCoinGot === 'function') {
|
||||||
|
Coin.onCoinGot(Coin.total + 1);
|
||||||
|
}
|
||||||
|
|
||||||
// Call the callback if any
|
// Call the callback if any
|
||||||
if (this.callback)
|
if (this.callback)
|
||||||
this.callback();
|
this.callback();
|
||||||
|
|
|
@ -27,12 +27,16 @@ window.onbeforeunload = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
setTimeout(function() {
|
Coin.onCoinGot = function(coin) {
|
||||||
|
if (coin === 6) {
|
||||||
|
setTimeout(function() {
|
||||||
$('#next').show();
|
$('#next').show();
|
||||||
$('#next').click(function() {
|
$('#next').click(function() {
|
||||||
window.location = '/prototype/games';
|
window.location = '/prototype/games';
|
||||||
});
|
});
|
||||||
}, 3*60*1000);
|
}, 60*1000);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,17 @@ var pointer;
|
||||||
var startCanvas;
|
var startCanvas;
|
||||||
var tutorial;
|
var tutorial;
|
||||||
|
|
||||||
|
Coin.onCoinGot = function(val) {
|
||||||
|
if (val === 6) {
|
||||||
|
setTimeout(function() {
|
||||||
|
$('#next').show();
|
||||||
|
$('#next').click(function() {
|
||||||
|
window.location = '/prototype/games';
|
||||||
|
});
|
||||||
|
}, 60*1000);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
|
|
||||||
// Main container that holds everything
|
// Main container that holds everything
|
||||||
|
|
Loading…
Reference in New Issue