diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-09-07 23:41:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-07 23:41:55 +0200 |
| commit | 84cdbfff31c31eff9e7ba2a1d6c73f6d08ac5e43 (patch) | |
| tree | fe9a18c8c0cdbf1ab8ef037af6f98a53b0ea018f /webAO/packets/handlers | |
| parent | 5362069a05b4bfbef03f37605af979aa3cf0e066 (diff) | |
| parent | 3f8d0974b327e663328bc36cd97f1ba1855a2269 (diff) | |
Merge pull request #169 from caleb-mabry/evenMoreWindowFunctions
Added more functions
Diffstat (limited to 'webAO/packets/handlers')
| -rw-r--r-- | webAO/packets/handlers/handleBN.ts | 3 | ||||
| -rw-r--r-- | webAO/packets/handlers/handlePV.ts | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/webAO/packets/handlers/handleBN.ts b/webAO/packets/handlers/handleBN.ts index 94029b3..3c5d95f 100644 --- a/webAO/packets/handlers/handleBN.ts +++ b/webAO/packets/handlers/handleBN.ts @@ -1,7 +1,8 @@ -import { client, getIndexFromSelect } from "../../client"; +import { client } from "../../client"; import { AO_HOST } from "../../client/aoHost"; import { safeTags } from "../../encoding"; import { updateBackgroundPreview } from '../../dom/updateBackgroundPreview' +import { getIndexFromSelect } from '../../dom/getIndexFromSelect' import tryUrls from "../../utils/tryUrls"; diff --git a/webAO/packets/handlers/handlePV.ts b/webAO/packets/handlers/handlePV.ts index fba2a3c..3c669b9 100644 --- a/webAO/packets/handlers/handlePV.ts +++ b/webAO/packets/handlers/handlePV.ts @@ -1,6 +1,7 @@ -import { client, pickEmotion } from "../../client"; +import { client } from "../../client"; import fileExists from "../../utils/fileExists"; import { updateActionCommands } from '../../dom/updateActionCommands' +import { pickEmotion } from '../../dom/pickEmotion' import { AO_HOST } from "../../client/aoHost"; /** |
