mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00
Move src/download_background.ts to src/background/
This commit is contained in:
parent
a9486ae6ad
commit
c8362dd774
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ import * as commandline_background from "@src/background/commandline_background"
|
|||
import * as convert from "@src/lib/convert"
|
||||
import * as config from "@src/lib/config"
|
||||
import * as dom from "./dom"
|
||||
import * as download_background from "./download_background"
|
||||
import * as download_background from "@src/background/download_background"
|
||||
import * as itertools from "./itertools"
|
||||
import * as keyseq from "./keyseq"
|
||||
import * as request from "./requests"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Background download-related functions
|
||||
*/
|
||||
|
||||
import { getDownloadFilenameForUrl } from "./url_util"
|
||||
import { getDownloadFilenameForUrl } from "@src/url_util"
|
||||
|
||||
/** Construct an object URL string from a given data URL
|
||||
*
|
||||
|
@ -69,7 +69,7 @@ export async function downloadUrl(url: string, saveAs: boolean) {
|
|||
await downloadPromise
|
||||
}
|
||||
|
||||
import * as Messaging from "./messaging"
|
||||
import * as Messaging from "@src/messaging"
|
||||
|
||||
// Get messages from content
|
||||
Messaging.addListener(
|
Loading…
Add table
Reference in a new issue