File: index.html

package info (click to toggle)
lager 0.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,916 kB
  • sloc: cpp: 10,967; javascript: 10,433; makefile: 214; python: 100; sh: 98
file content (19 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
  <head>
    <title>Lager debugger</title>
    <base href="/">
    <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
    <meta content="utf-8" http-equiv="encoding">
    <script type="text/javascript" src="gui.js"></script>
    <link rel="stylesheet" type="text/css" href="gui.css">
  </head>

  <body></body>

  <script type="text/javascript">
   var app = Elm.Main.fullscreen({ server: window.location.origin });
   app.ports.title.subscribe(function(title) {
       document.title = title;
   });
  </script>
</html>