summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-09-10 18:04:34 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-09-10 18:04:34 +0200
commit4089e04b953ce2799d839d841278446d7f0b4c32 (patch)
treee1877866c559544a97a4557cc99c025184f122c1 /src/roster-editor/www
parent04e4ce4137fe3ffb0ccc6dc8635db3e202517945 (diff)
character -> roster-editor
Diffstat (limited to 'src/roster-editor/www')
-rw-r--r--src/roster-editor/www/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/roster-editor/www/index.html b/src/roster-editor/www/index.html
new file mode 100644
index 0000000..a2a6034
--- /dev/null
+++ b/src/roster-editor/www/index.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" type="text/css" href="../css/global.css">
+ <link rel="stylesheet" type="text/css" href="../css/roster-editor.css">
+ <link rel="stylesheet" type="text/css" href="../asset/characters.css">
+ <link rel="stylesheet" type="text/css" href="../asset/armors.css">
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
+ </head>
+ <body>
+ <script src="script/main.js"></script>
+ <script src="../global/script/session.js"></script>
+ <script src="../global/script/urlparams.js"></script>
+ <script src="../global/script/navigation.js"></script>
+ <script>
+ tacticians_online.session.load();
+
+ tacticians_online.app =
+ Elm.Main.fullscreen
+ (
+ {
+ user_id: tacticians_online.session.get_user_id(),
+ token: tacticians_online.session.get_token(),
+ url_params: tacticians_online.urlparams.get_parameters()
+ }
+ );
+
+ tacticians_online.session.attach_to(tacticians_online.app);
+ tacticians_online.navigation.attach_to(tacticians_online.app);
+ </script>
+ </body>
+</html>