mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
#1358 Add findLastIndex polyfill for old Safari
This commit is contained in:
@ -6479,8 +6479,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Script includes -->
|
<!-- Script includes -->
|
||||||
|
<script src="lib/polyfill.js"></script>
|
||||||
<script src="lib/diff_match_patch.js"></script>
|
<script src="lib/diff_match_patch.js"></script>
|
||||||
<script src="lib/object-hasown.js"></script>
|
|
||||||
<script src="lib/jquery-3.5.1.min.js"></script>
|
<script src="lib/jquery-3.5.1.min.js"></script>
|
||||||
<script src="lib/jquery-ui.min.js"></script>
|
<script src="lib/jquery-ui.min.js"></script>
|
||||||
<script src="lib/jquery.transit.min.js"></script>
|
<script src="lib/jquery.transit.min.js"></script>
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
// Polyfill for old Safari versions
|
|
||||||
if (!Object.hasOwn) {
|
|
||||||
Object.hasOwn = function (obj, prop) { return obj.hasOwnProperty(prop); }
|
|
||||||
}
|
|
13
public/lib/polyfill.js
Normal file
13
public/lib/polyfill.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// Polyfills for old Safari versions
|
||||||
|
if (!Object.hasOwn) {
|
||||||
|
Object.hasOwn = function (obj, prop) { return obj.hasOwnProperty(prop); }
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Array.prototype.findLastIndex) {
|
||||||
|
Array.prototype.findLastIndex = function (callback, thisArg) {
|
||||||
|
for (let i = this.length - 1; i >= 0; i--) {
|
||||||
|
if (callback.call(thisArg, this[i], i, this)) return i;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user