Added polyfill
This commit is contained in:
parent
dcb6e08f76
commit
dd1a147835
15
main.js
15
main.js
|
@ -1,3 +1,16 @@
|
|||
if (!String.prototype.replaceAll) {
|
||||
String.prototype.replaceAll = function(str, newStr){
|
||||
|
||||
// If a regex pattern
|
||||
if (Object.prototype.toString.call(str).toLowerCase() === '[object regexp]') {
|
||||
return this.replace(str, newStr);
|
||||
}
|
||||
|
||||
// If a string
|
||||
return this.replace(new RegExp(str, 'g'), newStr);
|
||||
|
||||
};
|
||||
}
|
||||
function htmlEntities(str) {
|
||||
return String(str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"');
|
||||
}
|
||||
|
@ -237,4 +250,4 @@ $(".resetR").click(function () {
|
|||
});
|
||||
$('[name=orderBy],[name=orderHow]').on('change', function () {
|
||||
updateTable(lastPage);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user