Move src/download_background.ts to src/background/

This commit is contained in:
Saul Reynolds-Haertle 2018-09-29 16:06:28 -07:00
parent a9486ae6ad
commit c8362dd774
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ import * as commandline_background from "@src/background/commandline_background"
import * as convert from "@src/lib/convert" import * as convert from "@src/lib/convert"
import * as config from "@src/lib/config" import * as config from "@src/lib/config"
import * as dom from "./dom" 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 itertools from "./itertools"
import * as keyseq from "./keyseq" import * as keyseq from "./keyseq"
import * as request from "./requests" import * as request from "./requests"

View file

@ -2,7 +2,7 @@
* Background download-related functions * 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 /** Construct an object URL string from a given data URL
* *
@ -69,7 +69,7 @@ export async function downloadUrl(url: string, saveAs: boolean) {
await downloadPromise await downloadPromise
} }
import * as Messaging from "./messaging" import * as Messaging from "@src/messaging"
// Get messages from content // Get messages from content
Messaging.addListener( Messaging.addListener(