Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
b56c58f3
Commit
b56c58f3
authored
Jan 31, 2015
by
Mathieu Giraud
Committed by
Vidjil Team
Jan 31, 2015
Browse files
model.js: use getSoftVersionTime, getCommandTime, getTimestampTime in getPointHtmlInfo()
Now the 'info' link on each point gives more information.
parent
baebce16
Changes
1
Show whitespace changes
Inline
Side-by-side
browser/js/model.js
View file @
b56c58f3
...
...
@@ -1195,6 +1195,10 @@ Model.prototype = {
html
+=
"
<tr><td> reads </td><td>
"
+
this
.
reads
.
total
[
timeID
]
+
"
</td></tr>
"
html
+=
"
<tr><td> reads segmented </td><td>
"
+
this
.
reads
.
segmented
[
timeID
]
+
"
(
"
+
(
this
.
reads
.
segmented
[
timeID
]
*
100
/
this
.
reads
.
total
[
timeID
]).
toFixed
(
3
)
+
"
% )</td></tr>
"
html
+=
"
<tr><td> software used </td><td>
"
+
this
.
getSoftVersionTime
(
timeID
)
+
"
</td></tr>
"
html
+=
"
<tr><td> parameters </td><td>
"
+
this
.
getCommandTime
(
timeID
)
+
"
</td></tr>
"
html
+=
"
<tr><td> timestamp </td><td>
"
+
this
.
getTimestampTime
(
timeID
)
+
"
</td></tr>
"
html
+=
"
<tr><td> segmentation </td><td><pre>
"
+
this
.
getSegmentationInfo
(
timeID
)
+
"
</pre></td></tr>
"
html
+=
"
</table></div>
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment