aboutsummaryrefslogtreecommitdiffstats
path: root/pages/logging.html
blob: 17aafd7068346d18ed692c8248535ead2e8db56c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
  <head>
    <title>Vimium Logging</title>
    <script src="../lib/utils.js"></script>
    <script src="../lib/keyboard_utils.js"></script>
    <script src="../lib/dom_utils.js"></script>
    <script src="../lib/rect.js"></script>
    <script src="../lib/handler_stack.js"></script>
    <script src="../lib/settings.js"></script>
    <script src="../lib/find_mode_history.js"></script>
    <script src="../content_scripts/mode.js"></script>
    <script src="../content_scripts/ui_component.js"></script>
    <script src="../content_scripts/link_hints.js"></script>
    <script src="../content_scripts/vomnibar.js"></script>
    <script src="../content_scripts/scroller.js"></script>
    <script src="../content_scripts/marks.js"></script>
    <script src="../content_scripts/mode_insert.js"></script>
    <script src="../content_scripts/mode_find.js"></script>
    <script src="../content_scripts/mode_key_handler.js"></script>
    <script src="../content_scripts/mode_visual.js"></script>
    <script src="../content_scripts/hud.js"></script>
    <script src="../content_scripts/mode_normal.js"></script>
    <script src="../content_scripts/vimium_frontend.js"></script>
    <link rel="stylesheet" type="text/css" href="../content_scripts/vimium.css" />

    <script src="logging.js"></script>
    <style type="text/css">
      body {
        font: 14px "DejaVu Sans", "Arial", sans-serif;
        color: #303942;
        margin: 0 auto;
      }
      div#wrapper {
        margin: 0px 35px;
        width: calc(100% - 70px);
      }
      header {
        font-size: 18px;
        font-weight: normal;
        border-bottom: 1px solid #eee;
        padding: 20px 0 15px 0;
        width: 100%;
      }
      #log-text {
        width: 100%;
        height: 80%;
      }
      #branchRef-wrapper {
        display: none;
      }
      #branchRef-wrapper.no-hide {
        display: block;
      }
    </style>
  </head>

  <body>
    <div id="wrapper">
      <header>Vimium Log</header>
      <br />
      <textarea id="log-text" readonly></textarea>
      <br />
      Version: <span id="vimiumVersion"></span><br />
      Installed: <span id="installDate"></span>
      <div id="branchRef-wrapper">Branch: <span id="branchRef"></span></div>
    </div>
  </body>
</html>