Skip to content

Commit

Permalink
#⃣ add hash to js imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 committed Sep 19, 2024
1 parent 750da17 commit 41bd55b
Show file tree
Hide file tree
Showing 24 changed files with 41 additions and 40 deletions.
2 changes: 1 addition & 1 deletion an_website/currency_converter/converter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0-or-later
import { PopStateHandlers, setURLParam } from "../utils/utils.js";
import { PopStateHandlers, setURLParam } from "@utils/utils.js";

let bigIntType = "bigint";
try {
Expand Down
2 changes: 1 addition & 1 deletion an_website/hangman_solver/hangman_solver.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0-or-later
// stolen from: https://github.com/asozialesnetzwerk/Hangman-Solver/blob/ba693776f634e682553ac37a45157cd0ceeab6a9/js/index.js

import { PopStateHandlers, setMultipleURLParams } from "../utils/utils.js";
import { PopStateHandlers, setMultipleURLParams } from "@utils/utils.js";

const wildCardChar = "_";
// to replace "_" with regex
Expand Down
7 changes: 1 addition & 6 deletions an_website/quotes/quotes.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0-or-later
import {
get,
PopStateHandlers,
post,
setLastLocation,
} from "../utils/utils.js";
import { get, PopStateHandlers, post, setLastLocation } from "@utils/utils.js";

function startQuotes() {
const nextButton = document.getElementById("next") as HTMLAnchorElement;
Expand Down
2 changes: 1 addition & 1 deletion an_website/search/search.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0-or-later
import { get, PopStateHandlers, setURLParam } from "../utils/utils.js";
import { get, PopStateHandlers, setURLParam } from "@utils/utils.js";

const resultsList = document.getElementById("search-results")!;
const searchForm = document.getElementById("search-form") as HTMLFormElement;
Expand Down
2 changes: 1 addition & 1 deletion an_website/static/js/currency_converter/converter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions an_website/static/js/currency_converter/converter.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion an_website/static/js/hangman_solver/hangman_solver.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 41bd55b

Please sign in to comment.