mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00
move src/native_background.ts to src/background/
This commit is contained in:
parent
a4274d3839
commit
eeb74c95c6
6 changed files with 6 additions and 6 deletions
|
@ -14,7 +14,7 @@ import * as download_background from "@src/background/download_background"
|
|||
import * as itertools from "@src/lib/itertools"
|
||||
import * as keyseq from "./keyseq"
|
||||
import * as request from "./requests"
|
||||
import * as native from "./native_background"
|
||||
import * as native from "@src/background/native_background"
|
||||
import state from "./state"
|
||||
import * as webext from "./lib/webext"
|
||||
import { AutoContain } from "./lib/autocontainers"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import * as Controller from "@src/background/controller_background"
|
||||
import * as Native from "@src/native_background"
|
||||
import * as Native from "@src/background/native_background"
|
||||
import Logger from "@src/lib/logging"
|
||||
const logger = new Logger("rc")
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
import * as semverCompare from "semver-compare"
|
||||
import * as config from "@src/lib/config"
|
||||
import { browserBg } from "./lib/webext"
|
||||
import { browserBg } from "@src/lib/webext"
|
||||
|
||||
import Logger from "@src/lib/logging"
|
||||
const logger = new Logger("native")
|
|
@ -47,7 +47,7 @@ import state from "./state"
|
|||
import * as webext from "./lib/webext"
|
||||
import Mark from "mark.js"
|
||||
import * as keyseq from "./keyseq"
|
||||
import * as native from "./native_background"
|
||||
import * as native from "@src/background/native_background"
|
||||
import * as styling from "./styling"
|
||||
;(window as any).tri = Object.assign(Object.create(null), {
|
||||
browserBg: webext.browserBg,
|
||||
|
|
|
@ -130,7 +130,7 @@ import * as excmd_parser from "./parsers/exmode"
|
|||
import { mapstrToKeyseq } from "./keyseq"
|
||||
|
||||
//#background_helper
|
||||
import * as Native from "./native_background"
|
||||
import * as Native from "@src/background/native_background"
|
||||
|
||||
/** @hidden */
|
||||
export const cmd_params = new Map<string, Map<string, string>>()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as Native from "./native_background"
|
||||
import * as Native from "@src/background/native_background"
|
||||
import * as config from "@src/lib/config"
|
||||
|
||||
type scrollingDirection = "scrollLeft" | "scrollTop"
|
||||
|
|
Loading…
Add table
Reference in a new issue