e-mail-user
Gebruiker
- Lid geworden
- 24 apr 2007
- Berichten
- 133
Het volgende is een deel van m'n code:
Het vreemde is dat alleen de alert zichtbaar wordt.

Vragen:
1.
Kent iemand dit verschijnsel?
2.
Wat doe je eraan?
Alle hulp is welkom.
Code:
setTimeout(function() {
alert('setTimeout werkt');
this._banaanFunction();
this._mamaFunction();
this._papaFunction();
}, 3000);
return BoardModel.SECOND;
};
};
};
};
_p._banaanFunction = function() {
alert('banaan werkt');
this._tileIdArray.length = 0;
};
_p._mamaFunction = function() {
alert('mama het werkt');
this._tileIdArray.length = 0;
};
_p._papaFunction = function() {
alert('papa het werkt');
this._tileIdArray.length = 0;
};

Vragen:
1.
Kent iemand dit verschijnsel?
2.
Wat doe je eraan?
Alle hulp is welkom.