Add polyfill for String.prototype.includes
This commit is contained in:
@ -21,6 +21,8 @@
|
||||
<script src="../static/scripts/marked.min.js"></script>
|
||||
<script src="../static/scripts/emojify.min.js"></script>
|
||||
<script src="../static/scripts/filesize.min.js"></script>
|
||||
|
||||
<script src="../static/scripts/custom/polyfills.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -19,6 +19,8 @@
|
||||
<script src="../static/scripts/moment.min.js"></script>
|
||||
<script src="../static/scripts/marked.min.js"></script>
|
||||
<script src="../static/scripts/emojify.min.js"></script>
|
||||
|
||||
<script src="../static/scripts/custom/polyfills.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -20,6 +20,8 @@
|
||||
<script src="./static/scripts/moment.min.js"></script>
|
||||
<script src="./static/scripts/marked.min.js"></script>
|
||||
<script src="./static/scripts/emojify.min.js"></script>
|
||||
|
||||
<script src="../static/scripts/custom/polyfills.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -19,6 +19,8 @@
|
||||
<script src="../static/scripts/moment.min.js"></script>
|
||||
<script src="../static/scripts/marked.min.js"></script>
|
||||
<script src="../static/scripts/emojify.min.js"></script>
|
||||
|
||||
<script src="../static/scripts/custom/polyfills.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
15
static/scripts/custom/polyfills.js
Normal file
15
static/scripts/custom/polyfills.js
Normal file
@ -0,0 +1,15 @@
|
||||
// Polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes
|
||||
if (!String.prototype.includes) {
|
||||
String.prototype.includes = function(search, start) {
|
||||
'use strict';
|
||||
if (typeof start !== 'number') {
|
||||
start = 0;
|
||||
}
|
||||
|
||||
if (start + search.length > this.length) {
|
||||
return false;
|
||||
} else {
|
||||
return this.indexOf(search, start) !== -1;
|
||||
}
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user