Skip to content

Commit 088e33f

Browse files
committed
Minor tweaks
1 parent bdb25f4 commit 088e33f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ function toggleTagArray(tags: string[], tag: string): string[] {
363363
var idx = tags.indexOf(tag);
364364
if (idx != -1) {
365365
tags.splice(idx);
366-
tags.push(`!${tag}`);
366+
//tags.push(`!${tag}`);
367367
return tags;
368368
}
369369

@@ -569,7 +569,7 @@ async function main() {
569569
formatter: fmtTags,
570570
headerFilter: "input",
571571
headerFilterFunc: filterTags,
572-
headerPopup: `Separate multiple tags with space or comma.<br/>Pr efix a tag with <code>!</code> to exclude it.`,
572+
headerPopup: `Separate multiple tags with space or comma.<br/>Prefix a tag with <code>!</code> to exclude it.`,
573573
headerPopupIcon:
574574
'<span class="badge rounded-pill text-bg-primary">?</span>',
575575
headerSort: false,
@@ -586,7 +586,7 @@ async function main() {
586586
footerElement: `<span class="w-100 mx-2 my-1">
587587
<img src="/favicon.svg" class="pe-2" style="height:1.2em;" alt="UnicodeSearch logo"/>UnicodeSearch
588588
<span id="rowcount" class="px-3">Rows: ${data.length.toLocaleString()}</span>
589-
<input id="showhidecolumns" type="checkbox" class="mx-2" title="Toggle columns: Version, Block, Category, Script"/> Show/Hide Detail Columns
589+
<input id="showhidecolumns" type="checkbox" class="ms-2 me-1" title="Toggle columns: Version, Block, Category, Script"/> Show/Hide Detail Columns
590590
<a class="d-none d-lg-block float-end" href="https://github.com/FileFormatInfo/unicodesearch">Source</a>
591591
</span>`,
592592
});

0 commit comments

Comments
 (0)