updated vendor files and paths

This commit is contained in:
Brad Rydzewski
2015-09-29 18:21:17 -07:00
parent 155576fb03
commit dfea14c7e5
719 changed files with 128749 additions and 34774 deletions

15
static/scripts/utils.js Normal file
View File

@@ -0,0 +1,15 @@
Array.prototype.remove = function() {
var what, a = arguments, L = a.length, ax;
while (L && this.length) {
what = a[--L];
while ((ax = this.indexOf(what)) !== -1) {
this.splice(ax, 1);
}
}
return this;
};
function escapeHTML(html) {
return document.createElement('div').appendChild(
document.createTextNode(html)).parentNode.innerHTML;
}