From 9ea417ddc1dfc273ec1b481e7554145ce8ba0a00 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 20 Nov 2025 22:42:56 -0700 Subject: [PATCH] Add region comments --- module/apps/Ask.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/module/apps/Ask.mjs b/module/apps/Ask.mjs index f3d009a..e6d3ce4 100644 --- a/module/apps/Ask.mjs +++ b/module/apps/Ask.mjs @@ -12,6 +12,7 @@ const validInputTypes = [ ]; export class Ask extends HandlebarsApplicationMixin(ApplicationV2) { + // #region Options static DEFAULT_OPTIONS = { tag: `dialog`, classes: [ @@ -47,7 +48,9 @@ export class Ask extends HandlebarsApplicationMixin(ApplicationV2) { template: filePath(`templates/Ask/controls.hbs`), }, }; + // #endregion Options + // #region Instance _inputs = []; alwaysUseAnswerObject = false; @@ -88,6 +91,7 @@ export class Ask extends HandlebarsApplicationMixin(ApplicationV2) { this._userOnConfirm = onConfirm; this._userOnClose = onClose; }; + // #endregion Instance // #region Lifecycle async _onFirstRender() {