Create popup-preview-frame-main.js

This commit is contained in:
toasted-nutbread 2020-04-19 14:28:29 -04:00
parent 4d3d5d9ccb
commit 7c578f7582
3 changed files with 29 additions and 11 deletions

View File

@ -0,0 +1,27 @@
/*
* Copyright (C) 2019-2020 Yomichan Authors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/* global
* SettingsPopupPreview
*/
async function main() {
const instance = new SettingsPopupPreview();
await instance.prepare();
}
main();

View File

@ -41,12 +41,6 @@ class SettingsPopupPreview {
]);
}
static create() {
const instance = new SettingsPopupPreview();
instance.prepare();
return instance;
}
async prepare() {
// Setup events
window.addEventListener('message', this.onMessage.bind(this), false);
@ -178,8 +172,3 @@ class SettingsPopupPreview {
this.setInfoVisible(!this.popupShown);
}
}
SettingsPopupPreview.instance = SettingsPopupPreview.create();

View File

@ -129,5 +129,7 @@
<script src="/fg/js/popup-proxy-host.js"></script>
<script src="/fg/js/frontend.js"></script>
<script src="/bg/js/settings/popup-preview-frame.js"></script>
<script src="/bg/js/settings/popup-preview-frame-main.js"></script>
</body>
</html>