Skip to content

Commit 451a045

Browse files
committed
🌀
1 parent c3d386c commit 451a045

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/show-js-error.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! show-js-error | © 2024 Denis Seleznev | MIT License | https://github.com/hcodes/show-js-error/ */
1+
/*! show-js-error | © 2025 Denis Seleznev | MIT License | https://github.com/hcodes/show-js-error/ */
22
function getScreenSize() {
33
return [screen.width, screen.height, screen.colorDepth].join('×');
44
}
@@ -456,7 +456,7 @@ var ShowJSError = /** @class */ (function () {
456456
this.elems.prev.disabled = !errorIndex;
457457
}
458458
if (this.elems.num) {
459-
this.elems.num.innerText = (errorIndex + 1) + '\u2009/\u2009' + length;
459+
this.elems.num.innerText = (errorIndex + 1) + '/' + length;
460460
}
461461
if (this.elems.next) {
462462
this.elems.next.disabled = errorIndex === length - 1;

dist/show-js-error.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! show-js-error | © 2024 Denis Seleznev | MIT License | https://github.com/hcodes/show-js-error/ */
1+
/*! show-js-error | © 2025 Denis Seleznev | MIT License | https://github.com/hcodes/show-js-error/ */
22
(function (exports) {
33
'use strict';
44

@@ -459,7 +459,7 @@
459459
this.elems.prev.disabled = !errorIndex;
460460
}
461461
if (this.elems.num) {
462-
this.elems.num.innerText = (errorIndex + 1) + '\u2009/\u2009' + length;
462+
this.elems.num.innerText = (errorIndex + 1) + '/' + length;
463463
}
464464
if (this.elems.next) {
465465
this.elems.next.disabled = errorIndex === length - 1;

0 commit comments

Comments
 (0)