Skip to content

Commit 0c3d60d

Browse files
committed
application.js: fix indentation
This file wants to use spaces only for indentation. However, by accident I introduced tab characters (oh my, am I glad that I do not have to get this reviewed on the Git mailing list) in 41436cc (application.js: allow for relative URLs, 2025-03-15). Let me fix that really quickly. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent aa794fd commit 0c3d60d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

assets/js/application.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -343,11 +343,11 @@ var Search = {
343343
(async () => {
344344
const pagefindURL =
345345
`${baseURLPrefix}pagefind/pagefind.js`
346-
// adjust the `baseURLPrefix` if it is relative: the `import`
347-
// is relative to the _script URL_ here, which is in /js/.
348-
// That is different from other uses of `baseURLPrefix`, which
349-
// replace `href` and `src` attributes which are relative to the
350-
// page itself that is outside of /js/.
346+
// adjust the `baseURLPrefix` if it is relative: the `import`
347+
// is relative to the _script URL_ here, which is in /js/.
348+
// That is different from other uses of `baseURLPrefix`, which
349+
// replace `href` and `src` attributes which are relative to the
350+
// page itself that is outside of /js/.
351351
.replace(/^\.\//, '../')
352352
Search.pagefind = await import(pagefindURL);
353353
const options = {

0 commit comments

Comments
 (0)