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
dd99c914
Commit
dd99c914
authored
May 10, 2017
by
Téo Vasseur
Browse files
{scatterPlot,shortcut}.js : jshint corrections
Modifications in scatterPlot.js were already done but overwritten by merge
parent
517805eb
Pipeline
#2134
failed with stages
in 3 minutes and 26 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
browser/js/scatterPlot.js
View file @
dd99c914
...
...
@@ -1878,14 +1878,15 @@ ScatterPlot.prototype = {
//Active selector -> activeSelector() function
if
(
this
.
active_selector
)
{
var
width
,
height
;
/*Movement of all nodes, with mouse move*/
if
(
this
.
active_move
)
{
this
.
positionToMove
.
x
=
this
.
coordinates
[
0
];
this
.
positionToMove
.
y
=
this
.
coordinates
[
1
];
var
width
=
this
.
positionToMove
.
originx
-
this
.
positionToMove
.
x
;
var
height
=
this
.
positionToMove
.
originy
-
this
.
positionToMove
.
y
;
width
=
this
.
positionToMove
.
originx
-
this
.
positionToMove
.
x
;
height
=
this
.
positionToMove
.
originy
-
this
.
positionToMove
.
y
;
this
.
fixedAllClones
(
false
);
...
...
@@ -1911,8 +1912,8 @@ ScatterPlot.prototype = {
var
x
=
this
.
selector
.
attr
(
"
originx
"
);
var
y
=
this
.
selector
.
attr
(
"
originy
"
);
var
width
=
this
.
coordinates
[
0
]
-
x
;
var
height
=
this
.
coordinates
[
1
]
-
y
;
width
=
this
.
coordinates
[
0
]
-
x
;
height
=
this
.
coordinates
[
1
]
-
y
;
if
(
width
>
5
)
{
this
.
selector
.
attr
(
"
width
"
,
width
-
3
)
...
...
@@ -1989,15 +1990,16 @@ ScatterPlot.prototype = {
for
(
var
i
=
0
;
i
<
this
.
nodes
.
length
;
i
++
)
{
var
node
=
this
.
nodes
[
i
]
var
clone
=
this
.
m
.
clone
(
i
)
var
node_x
,
node_y
;
if
(
this
.
mode
!=
this
.
MODE_BAR
)
{
var
node_x
=
node
.
x
+
this
.
margin
[
3
]
var
node_y
=
node
.
y
+
this
.
margin
[
0
]
node_x
=
node
.
x
+
this
.
margin
[
3
]
node_y
=
node
.
y
+
this
.
margin
[
0
]
}
else
{
// bar_x and bar_y are both ratio values (between 0 and 1), need to multiply by the size of the grid
var
node_x
=
node
.
bar_x
*
this
.
gridSizeW
+
this
.
margin
[
3
];
node_x
=
node
.
bar_x
*
this
.
gridSizeW
+
this
.
margin
[
3
];
var
mid_y
=
node
.
bar_y
-
node
.
bar_h
/
2
;
// bar_x represents the middle of the rectangle, but not bar_y
// bar_y starts from bottom, so we need to substract the y value from the height of the grid
var
node_y
=
this
.
gridSizeH
-
mid_y
*
this
.
gridSizeH
+
this
.
margin
[
0
];
node_y
=
this
.
gridSizeH
-
mid_y
*
this
.
gridSizeH
+
this
.
margin
[
0
];
}
if
(
clone
.
isActive
()
&&
(
clone
.
getSize
()
||
clone
.
getSequenceSize
())
&&
node_x
>
x1
&&
node_x
<
x2
&&
node_y
>
y1
&&
node_y
<
y2
)
...
...
browser/js/shortcut.js
View file @
dd99c914
...
...
@@ -133,8 +133,8 @@ Shortcut.prototype = {
}
//system shortcuts
if
(
!
e
.
ctrlKey
&&
!
e
.
metaKey
&&
typeof
this
.
system_shortcuts
[
key
]
!=
"
undefined
"
)
{
if
(
!
e
.
ctrlKey
&&
!
e
.
metaKey
&&
typeof
this
.
system_shortcuts
[
key
]
!=
"
undefined
"
)
{
var
germlines
=
this
.
system_shortcuts
[
key
].
filter
(
function
(
g
)
{
return
m
.
system_available
.
indexOf
(
g
)
!=
-
1
})
if
(
germlines
.
length
===
0
)
...
...
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