How did that even...?
This commit is contained in:
parent
b060a9c23e
commit
dab73f8cbb
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user