Add setting to add a global _doc reference (closes #4)
This commit is contained in:
parent
5573a5b674
commit
ee99ab15dd
3 changed files with 45 additions and 2 deletions
|
|
@ -2,6 +2,8 @@
|
|||
import "./hooks/renderSettingsConfig.mjs";
|
||||
|
||||
// Settings
|
||||
import { addGlobalDocReferrer } from "./settings/addGlobalDocReferrer.mjs";
|
||||
import { autoUnpauseOnLoad } from "./settings/autoUnpauseOnLoad.mjs";
|
||||
import { chatSidebarBackground } from "./settings/chatSidebarBackground.mjs";
|
||||
import { hotbarButtonGap } from "./settings/hotbarButtonGap.mjs";
|
||||
import { hotbarButtonSize } from "./settings/hotbarButtonSize.mjs";
|
||||
|
|
@ -15,7 +17,6 @@ import { DevSettingsMenu } from "./apps/DevSettingsMenu.mjs";
|
|||
|
||||
// Misc
|
||||
import { __ID__ } from "./consts.mjs";
|
||||
import { autoUnpauseOnLoad } from "./settings/autoUnpauseOnLoad.mjs";
|
||||
|
||||
Hooks.on(`setup`, () => {
|
||||
|
||||
|
|
@ -26,6 +27,7 @@ Hooks.on(`setup`, () => {
|
|||
restricted: false,
|
||||
type: DevSettingsMenu,
|
||||
});
|
||||
addGlobalDocReferrer();
|
||||
autoUnpauseOnLoad();
|
||||
|
||||
chatSidebarBackground();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue