Skip to content

Commit c933bcf

Browse files
committed
Update fill.js
1 parent 2655556 commit c933bcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascripts/fill.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function normalize(s) {
1919
return s
2020
.replaceAll(
2121
/[^a-zA-Z0-9\x21\$\x26\x27\(\)\*\+\x2c\x2d\.\/\x3a\x3b\x3d\?\x40_]/g,
22-
"-",
22+
"-"
2323
)
2424
.replaceAll(/\x2d+/g, "-");
2525
}
@@ -31,7 +31,7 @@ async function init(path) {
3131
};
3232
document.getElementById("plaintext").oninput = function () {
3333
document.getElementById("minified").href = minify(
34-
document.getElementById("plaintext").value,
34+
document.getElementById("plaintext").value
3535
);
3636
};
3737
var content = [];

0 commit comments

Comments
 (0)