Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
2c109e44
Commit
2c109e44
authored
Sep 22, 2017
by
BibloLeHibou
Browse files
clone.js : correctio of bug in sliding nt between seg in export format
link to
#2628
parent
4f7fb7a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/clone.js
View file @
2c109e44
...
...
@@ -737,13 +737,13 @@ Clone.prototype = {
}
var
s
=
''
s
+=
this
.
sequence
.
substring
(
0
,
this
.
seg
[
'
5
'
].
stop
)
s
+=
this
.
sequence
.
substring
(
0
,
this
.
seg
[
'
5
'
].
stop
+
1
)
s
+=
'
\n
'
if
(
this
.
seg
[
'
5
'
].
stop
<
this
.
seg
[
'
3
'
].
start
-
1
)
{
s
+=
this
.
sequence
.
substring
(
this
.
seg
[
'
5
'
].
stop
,
this
.
seg
[
'
3
'
].
start
-
1
)
if
(
this
.
seg
[
'
5
'
].
stop
+
1
<
this
.
seg
[
'
3
'
].
start
)
{
s
+=
this
.
sequence
.
substring
(
this
.
seg
[
'
5
'
].
stop
+
1
,
this
.
seg
[
'
3
'
].
start
)
s
+=
'
\n
'
}
s
+=
this
.
sequence
.
substring
(
this
.
seg
[
'
3
'
].
start
-
1
)
s
+=
this
.
sequence
.
substring
(
this
.
seg
[
'
3
'
].
start
)
return
s
},
...
...
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