forked from ovity/octotree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
97 lines (85 loc) · 3.09 KB
/
Copy pathtemplate.html
File metadata and controls
97 lines (85 loc) · 3.09 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<div>
<nav class="octotree_sidebar">
<a class="octotree_toggle btn">
<div class="loader"></div>
<span></span>
<div class="popup">
<div class="arrow"></div>
<div class="content">
Octotree is enabled on this page. Click this button or press
<kbd>cmd shift s</kbd> (or <kbd>ctrl shift s</kbd>)
to show it.
</div>
</div>
</a>
<a class="octotree_opts" href="javascript:void(0)">
<span></span>
</a>
<div class="octotree_views">
<div class="octotree_view octotree_treeview current">
<div class="octotree_view_header"></div>
<div class="octotree_view_body"></div>
</div>
<div class="octotree_view octotree_errorview">
<div class="octotree_view_header"></div>
<form class="octotree_view_body">
<div class="message"></div>
<div>
<input name="token" type="text" placeholder="Paste access token here" autocomplete="off">
</div>
<div>
<button type="submit" class="btn">Save</button>
<a href="https://github.com/buunguyen/octotree#access-token" target="_blank" tabIndex="-1">Why is this required?</a>
</div>
<div class="error"></div>
</form>
</div>
<div class="octotree_view octotree_optsview">
<div class="octotree_view_header">Settings</div>
<form class="octotree_view_body">
<div>
<label>Site access token</label>
<a class="octotree_help" href="https://github.com/buunguyen/octotree#settings" target="_blank" tabIndex="-1">
<span></span>
</a>
<input type="text" data-store="TOKEN" data-perhost="true">
</div>
<div>
<div>
<label>Hotkeys</label>
</div>
<input type="text" data-store="HOTKEYS">
</div>
<!-- @ifdef CHROME -->
<div class="octotree_github_only">
<div>
<label>GitHub Enterprise URLs</label>
</div>
<textarea data-store="GHEURLS" placeholder="https://github.mysite1.com__SPACES__https://github.mysite2.com">
</textarea>
</div>
<div class="octotree_gitlab_only">
<div>
<label>GitLab Enterprise URLs</label>
</div>
<textarea data-store="GLEURLS" placeholder="https://gitlab.mysite1.com__SPACES__https://gitlab.mysite2.com">
</textarea>
</div>
<!-- @endif -->
<div>
<label><input type="checkbox" data-store="REMEMBER"> Remember sidebar visibility</label>
</div>
<div>
<label><input type="checkbox" data-store="NONCODE"> Show in non-code pages</label>
</div>
<div class="octotree_github_only">
<label><input type="checkbox" data-store="LOADALL"> Load entire tree at once</label>
</div>
<div>
<button type="submit" class="btn">Save</button>
</div>
</form>
</div>
</div>
</nav>
</div>