Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tom
2014-09-16 00:05:15 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3897c03db306ace7ffe0875514bbef38883b206d
3897c03d
1 parent
4d0c663c
Removed pin-on-click in GUI; now it's toggled via 'C' key.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
apps/tvue/src/main/webapp/index.html
apps/tvue/src/main/webapp/index.html
View file @
3897c03
...
...
@@ -129,7 +129,7 @@
}
function
dragstart
(
d
)
{
d3
.
select
(
this
).
classed
(
"fixed"
,
d
.
fixed
=
true
);
//
d3.select(this).classed("fixed", d.fixed = true);
}
...
...
@@ -239,6 +239,8 @@
targetNode
=
aux
;
}
else
if
(
d3
.
event
.
keyCode
==
70
)
{
nextPath
();
}
else
if
(
d3
.
event
.
keyCode
==
67
&&
selectedNode
)
{
selectedNode
.
fixed
=
!
selectedNode
.
fixed
;
}
d3
.
selectAll
(
".nodeStrokeClass"
).
attr
(
"fill"
,
fillColor
);
...
...
Please
register
or
login
to post a comment