This commit is contained in:
Marco Castelluccio 2014-08-21 10:11:58 -07:00
Родитель d99df01d0e
Коммит 1de311045d
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -12,3 +12,9 @@ if (!Math.fround) {
}
})();
}
if (!String.prototype.contains) {
String.prototype.contains = function() {
return String.prototype.indexOf.apply(this, arguments) !== -1;
};
}