diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-07-17 17:10:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 17:10:25 -0400 |
commit | fafa746a632b1907d9cca262f689d7bec4e0f940 (patch) | |
tree | f328ef581376cbda0b9d99bd9c3f7892de50a3c1 /ext/popup.html | |
parent | 74381302c7a658dc3fd5e6c3a76842dd430341bb (diff) |
Sandbox script folders (#1837)
* Move scripts
* Update paths
* Fix ordering
* Simplify eslint rules
Diffstat (limited to 'ext/popup.html')
-rw-r--r-- | ext/popup.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/popup.html b/ext/popup.html index 065bcfa1..1f336943 100644 --- a/ext/popup.html +++ b/ext/popup.html @@ -110,9 +110,9 @@ <script src="/js/display/display-resizer.js"></script> <script src="/js/display/element-overflow-controller.js"></script> <script src="/js/display/option-toggle-hotkey-handler.js"></script> -<script src="/js/display/pronunciation-generator.js"></script> <script src="/js/display/query-parser.js"></script> -<script src="/js/display/structured-content-generator.js"></script> +<script src="/js/display/sandbox/pronunciation-generator.js"></script> +<script src="/js/display/sandbox/structured-content-generator.js"></script> <script src="/js/dom/document-focus-controller.js"></script> <script src="/js/dom/document-util.js"></script> <script src="/js/dom/dom-text-scanner.js"></script> @@ -125,8 +125,8 @@ <script src="/js/input/hotkey-handler.js"></script> <script src="/js/input/hotkey-help-controller.js"></script> <script src="/js/input/hotkey-util.js"></script> -<script src="/js/language/dictionary-data-util.js"></script> -<script src="/js/language/japanese-util.js"></script> +<script src="/js/language/sandbox/dictionary-data-util.js"></script> +<script src="/js/language/sandbox/japanese-util.js"></script> <script src="/js/language/text-scanner.js"></script> <script src="/js/media/audio-system.js"></script> <script src="/js/media/media-loader.js"></script> |