mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
fix name of content state script to fit style
This commit is contained in:
parent
48f433c6a5
commit
90fa242e84
7 changed files with 6 additions and 6 deletions
|
@ -12,7 +12,7 @@ const logger = new Logging.Logger("content")
|
|||
logger.debug("Tridactyl content script loaded, boss!")
|
||||
|
||||
// Our local state
|
||||
import {contentState, addContentStateChangedListener } from "./content_state"
|
||||
import {contentState, addContentStateChangedListener } from "./state_content"
|
||||
|
||||
// Hook the keyboard up to the controller
|
||||
import * as ContentController from "./controller_content"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { MsgSafeKeyboardEvent, MsgSafeNode, KeyboardEvent } from "./msgsafe"
|
||||
import { isTextEditable } from "./dom"
|
||||
import { contentState, ModeName } from "./content_state"
|
||||
import { contentState, ModeName } from "./state_content"
|
||||
import { repeat } from "./.excmds_background.generated"
|
||||
import Logger from "./logging"
|
||||
import * as messaging from "./messaging"
|
||||
|
|
|
@ -99,7 +99,7 @@ import * as Messaging from "./messaging"
|
|||
import { browserBg, activeTabId, activeTabContainerId, openInNewTab, openInNewWindow } from "./lib/webext"
|
||||
import * as Container from "./lib/containers"
|
||||
import state from "./state"
|
||||
import { contentState, ModeName } from "./content_state"
|
||||
import { contentState, ModeName } from "./state_content"
|
||||
import * as UrlUtil from "./url_util"
|
||||
import * as config from "./config"
|
||||
import * as aliases from "./aliases"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
import * as DOM from "./dom"
|
||||
import { hasModifiers } from "./keyseq"
|
||||
import { contentState } from "./content_state"
|
||||
import { contentState } from "./state_content"
|
||||
import { messageActiveTab, message } from "./messaging"
|
||||
import * as config from "./config"
|
||||
import Logger from "./logging"
|
||||
|
|
|
@ -20,7 +20,7 @@ import {
|
|||
unique,
|
||||
} from "./itertools"
|
||||
import { hasModifiers } from "./keyseq"
|
||||
import { contentState } from "./content_state"
|
||||
import { contentState } from "./state_content"
|
||||
import { messageActiveTab, message } from "./messaging"
|
||||
import * as config from "./config"
|
||||
import * as TTS from "./text_to_speech"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { contentState } from "../content_state"
|
||||
import { contentState } from "../state_content"
|
||||
import { isSimpleKey } from "../keyseq"
|
||||
import { MsgSafeKeyboardEvent } from "../msgsafe"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue