Line 961:
if (!Array.prototype.lastIndexOf) { Array.prototype.indexOf = function(el) { for (var i = this.length-1; i >= 0; i--) { if (this[i] == el) { return i; } } return -1; }; }
I believe 2nd string should be:
Array.prototype.lastIndexOf = function(el) {
Log in to post a comment.
Line 961:
I believe 2nd string should be: