-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.html.js
94 lines (88 loc) · 3.16 KB
/
documentation.html.js
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
define([], function() {
return '<div id="documentation-container">' +
'<h4 class="highlighted-text">Common operations</h4>' +
'<table>' +
'<thead>' +
'<tr>' +
'<th>Action</th>' +
'<th>Shortcut</th>' +
'<th>Alternative</th>' +
'</tr>' +
'</thead>' +
'<tbody>' +
'<tr>' +
'<td>Open files</td>' +
'<td><kbd>Ctrl</kbd>+<kbd>O</kbd></td>' +
'<td>Drag and drop files to the browser window</td>' +
'</tr>' +
'<tr>' +
'<td>Switch between molecular maps</td>' +
'<td><kbd>Ctrl</kbd>+<kbd>↑</kbd>/<kbd>↓</kbd></td>' +
'<td>Click on a name of an active map above the colorbar</td>' +
'</tr>' +
'<tr>' +
'<td>Find a molecular map by its name</td>' +
'<td><kbd>Ctrl</kbd>+<kbd>F</kbd></td>' +
'<td>Click on a name of an active map above the colorbar and start typing.</td>' +
'</tr>' +
'<tr>' +
'<td>Save view as image</td>' +
'<td><kbd>Ctrl</kbd>+<kbd>S</kbd></td>' +
'<td>NA</td>' +
'</tr>' +
'<tr>' +
'<td>Save cartographical snapshot</td>' +
'<td><kbd>Ctrl</kbd>+<kbd>E</kbd></td>' +
'<td>NA</td>' +
'</tr>' +
'</tbody>' +
'</table>' +
'<br>' +
'<p><span class="highlighted-text">Note:</span> macOS users should use <kbd>⌘</kbd> key instead of <kbd>Ctrl</kbd>.</p>' +
'<br>' +
'<h4 class="highlighted-text">Image manipulations</h4>' +
'<table>' +
'<thead>' +
'<tr>' +
'<th>Action</th>' +
'<th>How-to</th>' +
'<th>Views where available</th>' +
'</tr>' +
'</thead>' +
'<tbody>' +
'<tr>' +
'<td>Rotate model</td>' +
'<td>Move mouse holding left button</td>' +
'<td>3D</td>' +
'</tr>' +
'<tr>' +
'<td>Move image</td>' +
'<td>Move mouse holding left button</td>' +
'<td>2D</td>' +
'</tr>' +
'<tr>' +
'<td>Zoom</td>' +
'<td>Spin mouse wheel</td>' +
'<td>2D, 3D</td>' +
'</tr>' +
'<tr>' +
'<td>Display spot name</td>' +
'<td>Left-click at a spot</td>' +
'<td>2D, 3D</td>' +
'</tr>' +
'<tr>' +
'<td>Move model</td>' +
'<td>Move mouse holding right button</td>' +
'<td>3D</td>' +
'</tr>' +
'<tr>' +
'<td>Enable/disable model auto-rotation</td>' +
'<td>Double-click</td>' +
'<td>3D</td>' +
'</tr>' +
'</tbody>' +
'</table>' +
'<br>' +
'<p>Looking for more information? Check out <a href="https://github.com/MetaboliteCartography/ili">`ili GitHub repository</a>.</p>' +
'</div>';
});