Fix import path
This commit is contained in:
parent
2dd5ae5def
commit
46714d4c92
|
@ -1,5 +1,5 @@
|
||||||
// vim:set sw=4 ts=4 sts=4 ft=javascript expandtab:
|
// vim:set sw=4 ts=4 sts=4 ft=javascript expandtab:
|
||||||
import { lufi } from "/js/lufi.js";
|
import { lufi } from "./lufi.js";
|
||||||
|
|
||||||
const abortedDOM = document.createElement("div");
|
const abortedDOM = document.createElement("div");
|
||||||
abortedDOM.innerHTML = `<h4>${i18n.aborted1}</h4>
|
abortedDOM.innerHTML = `<h4>${i18n.aborted1}</h4>
|
||||||
|
|
|
@ -6,7 +6,7 @@ import {
|
||||||
ResultAsync,
|
ResultAsync,
|
||||||
isSecureContext,
|
isSecureContext,
|
||||||
CryptoAlgorithm,
|
CryptoAlgorithm,
|
||||||
} from "/js/lufi.js";
|
} from "./lufi.js";
|
||||||
|
|
||||||
// Global zip objects for currently created zip file
|
// Global zip objects for currently created zip file
|
||||||
let zipSize = 0;
|
let zipSize = 0;
|
||||||
|
|
Loading…
Reference in New Issue