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
62611e20
Commit
62611e20
authored
Mar 25, 2021
by
marc duez
Committed by
Mathieu Giraud
Apr 01, 2021
Browse files
aligner : fix
parent
8ff2897f
Changes
5
Hide whitespace changes
Inline
Side-by-side
browser/index.html
View file @
62611e20
...
...
@@ -576,7 +576,7 @@
<span
><i
class=
"icon-cog"
></i></span>
<div
class=
"menu-content"
>
<label
for=
"highlight_match"
title=
"matches"
>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
span>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
<span>
Show only mutations
</span>
</label>
</div>
...
...
browser/js/aligner.js
View file @
62611e20
...
...
@@ -151,7 +151,7 @@ Aligner.prototype = {
$
(
function
()
{
$
(
elem
).
find
(
'
input
'
).
unbind
(
"
click
"
);
$
(
elem
).
find
(
'
input
'
).
click
(
function
(
e
){
var
input
=
elem
.
getElementsByTagName
(
"
input
"
);
var
input
=
elem
.
getElementsByTagName
(
"
input
"
)
[
0
]
;
self
.
toggleLayers
(
layers
,
input
.
checked
,
true
);
e
.
stopPropagation
();
});
...
...
browser/segmenter_page.html
View file @
62611e20
...
...
@@ -94,7 +94,7 @@
<span
><i
class=
"icon-cog"
></i></span>
<div
class=
"menu-content"
>
<label
for=
"highlight_match"
title=
"matches"
>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
span>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
<span>
Show only mutations
</span>
</label>
</div>
...
...
browser/template/aligner.html
View file @
62611e20
...
...
@@ -21,7 +21,7 @@
<span
><i
class=
"icon-cog"
></i></span>
<div
class=
"menu-content"
>
<label
for=
"highlight_match"
title=
"matches"
>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
span>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
<span>
Show only mutations
</span>
</label>
</div>
...
...
browser/test/QUnit/test_Qunit.html
View file @
62611e20
...
...
@@ -80,7 +80,7 @@
<span
><i
class=
"icon-cog"
></i></span>
<div
class=
"menu-content"
>
<label
for=
"highlight_match"
title=
"matches"
>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
span>
<span><input
type=
"checkbox"
id=
"highlight_match"
autocomplete=
"off"
></span>
<span>
Show only mutations
</span>
</label>
</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