| summaryrefslogtreecommitdiff | 
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2018-08-24 17:36:33 +0200 | 
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2018-08-24 17:36:33 +0200 | 
| commit | b3fd9613c298e1af44f025d9d95021eec8c72a59 (patch) | |
| tree | 4e00b8d3c2f3a56747a3520a3ec260c5e3302861 /src/character/www/index.html | |
| parent | 3713d6089adccd96385b0d079bb72587d2122848 (diff) | |
Starting to work on the character editor.
Diffstat (limited to 'src/character/www/index.html')
| -rw-r--r-- | src/character/www/index.html | 30 | 
1 files changed, 30 insertions, 0 deletions
| diff --git a/src/character/www/index.html b/src/character/www/index.html new file mode 100644 index 0000000..7954e54 --- /dev/null +++ b/src/character/www/index.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +   <head> +      <link rel="stylesheet" type="text/css" href="../css/global.css"> +      <link rel="stylesheet" type="text/css" href="../css/character.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> +         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); +      </script> +   </body> +</html> | 


