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
ccf2081e
Commit
ccf2081e
authored
Dec 09, 2016
by
Mathieu Giraud
Browse files
js/segmenter.js: fix IMGT productivity icon
Thanks for
@mikael-s
for discovering this bug
parent
7f7bf984
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/segmenter.js
View file @
ccf2081e
...
...
@@ -558,7 +558,7 @@ Segment.prototype = {
var
info
=
''
;
if
(
clone
.
seg
.
imgt
!=
null
){
info
=
(
clone
.
seg
.
imgt
[
"
Functionality
"
].
toLowerCase
().
indexOf
(
"
unproductive
"
)
>
-
1
)
info
=
(
clone
.
seg
.
imgt
[
"
Functionality
"
].
toLowerCase
().
indexOf
(
"
unproductive
"
)
<
0
)
?
icon
(
'
icon-plus-squared
'
,
'
productive, as computed by IMGT/V-QUEST
'
)
:
icon
(
'
icon-minus-squared
'
,
'
unproductive, as computed by IMGT/V-QUEST
'
)
;
}
...
...
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