diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 13:54:43 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 13:54:43 -0500 | 
| commit | 6a3dae04de68ab633da15bbc8ec6b350e38e6d2f (patch) | |
| tree | 67938b464b306f4da22fa4d4e2c7e142af2d77a9 /ext/js/display | |
| parent | 19f359af78c052c7d3083fc353d37c606444f179 (diff) | |
Add extension error imports
Diffstat (limited to 'ext/js/display')
| -rw-r--r-- | ext/js/display/display-generator.js | 1 | ||||
| -rw-r--r-- | ext/js/display/option-toggle-hotkey-handler.js | 1 | 
2 files changed, 2 insertions, 0 deletions
| diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 9fc700f3..e8be79d9 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -17,6 +17,7 @@   */  import {isObject} from '../core.js'; +import {ExtensionError} from '../core/extension-error.js';  import {HtmlTemplateCollection} from '../dom/html-template-collection.js';  import {DictionaryDataUtil} from '../language/sandbox/dictionary-data-util.js';  import {yomitan} from '../yomitan.js'; diff --git a/ext/js/display/option-toggle-hotkey-handler.js b/ext/js/display/option-toggle-hotkey-handler.js index e73fcf04..9677e86b 100644 --- a/ext/js/display/option-toggle-hotkey-handler.js +++ b/ext/js/display/option-toggle-hotkey-handler.js @@ -16,6 +16,7 @@   * along with this program.  If not, see <https://www.gnu.org/licenses/>.   */ +import {ExtensionError} from '../core/extension-error.js';  import {yomitan} from '../yomitan.js';  export class OptionToggleHotkeyHandler { |