aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/float-main.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-19 14:29:29 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-19 14:29:43 -0400
commit9ca906ef900dacfd10a548757d8a2b842a549088 (patch)
tree44a5b968140d9e78fe73b492c8d023a06c7eaec2 /ext/fg/js/float-main.js
parent7c578f75827ae0a72b13f04b8342fd8129f702d4 (diff)
Create float-main.js
Diffstat (limited to 'ext/fg/js/float-main.js')
-rw-r--r--ext/fg/js/float-main.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/ext/fg/js/float-main.js b/ext/fg/js/float-main.js
new file mode 100644
index 00000000..b752cdee
--- /dev/null
+++ b/ext/fg/js/float-main.js
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 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
+ * DisplayFloat
+ */
+
+async function main() {
+ new DisplayFloat();
+}
+
+main();