Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Maintenance - Mise à jour mensuelle Lundi 6 Février entre 7h00 et 9h00
Open sidebar
genotoul-bioinfo
D-GENIES
Commits
f2cadc7d
Commit
f2cadc7d
authored
Jan 30, 2018
by
Floreal Cabanettes
Browse files
Summary: fix if a class is not present
parent
ccbf1a7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dgenies/static/js/dgenies.result.summary.js
View file @
f2cadc7d
...
...
@@ -34,7 +34,7 @@ dgenies.result.summary.show = function(percents) {
}
console
.
log
(
percent
);
x
+=
percent_value
;
percent_value
=
percents
[
percent
];
percent_value
=
percent
in
percents
?
percents
[
percent
]
:
0
;
container
.
append
(
"
rect
"
)
.
attr
(
"
x
"
,
x
+
"
%
"
)
.
attr
(
"
y
"
,
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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