How did that even...?

This commit is contained in:
Zixaphir 2013-12-24 15:45:00 -07:00
parent b060a9c23e
commit dab73f8cbb
3 changed files with 28 additions and 28 deletions

View File

@ -111,6 +111,20 @@
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
Array.prototype.indexOf = function(val) {
var i;
i = this.length;
while (i--) {
if (this[i] === val) {
return i;
}
}
return i;
};
__indexOf = [].indexOf;
Config = {
main: {
'Miscellaneous': {
@ -821,20 +835,6 @@
return __slice.call(root.querySelectorAll(selector));
};
Array.prototype.indexOf = function(val) {
var i;
i = this.length;
while (i--) {
if (this[i] === val) {
return i;
}
}
return i;
};
__indexOf = [].indexOf;
Board = (function() {
Board.prototype.toString = function() {
return this.ID;

View File

@ -89,6 +89,20 @@
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
Array.prototype.indexOf = function(val) {
var i;
i = this.length;
while (i--) {
if (this[i] === val) {
return i;
}
}
return i;
};
__indexOf = [].indexOf;
Config = {
main: {
'Miscellaneous': {
@ -828,20 +842,6 @@
return __slice.call(root.querySelectorAll(selector));
};
Array.prototype.indexOf = function(val) {
var i;
i = this.length;
while (i--) {
if (this[i] === val) {
return i;
}
}
return i;
};
__indexOf = [].indexOf;
Board = (function() {
Board.prototype.toString = function() {
return this.ID;