hallo ..
weiß jemand wo in diesem quelltext die funktion für die bildzählung ist,möchte diese gerne ändern aber finde sie nicht.
danke im voraus ...
Array.prototype.removeDuplicates = function () { for (var i = 1; i < this.length; i++) { if (this[i][0] == this[i-1][0]) { this.splice(i,1); }...