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
Thomas Vachuska
2014-11-21 13:13:36 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c59658c10556fcadfd8e9b278d109318a4ef5ae6
c59658c1
1 parent
60d72bf7
Added flash messages.
Change-Id: If3f8650b5dc977dca27fb764ab57f2e11a21682d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
web/gui/src/main/webapp/feedback.js
web/gui/src/main/webapp/topo2.js
web/gui/src/main/webapp/feedback.js
View file @
c59658c
...
...
@@ -32,8 +32,8 @@
// Config variables
var
w
=
'100%'
,
h
=
200
,
fade
=
5
00
,
showFor
=
20
00
,
fade
=
2
00
,
showFor
=
5
00
,
vb
=
'-200 -'
+
(
h
/
2
)
+
' 400 '
+
h
,
xpad
=
20
,
ypad
=
10
;
...
...
web/gui/src/main/webapp/topo2.js
View file @
c59658c
...
...
@@ -841,12 +841,14 @@
two
:
getSelId
(
1
),
ids
:
[
getSelId
(
0
),
getSelId
(
1
)
]
});
network
.
view
.
flash
(
'Host-to-Host connectivity added'
);
}
function
showTrafficAction
()
{
// force intents hover mode
hoverMode
=
1
;
showSelectTraffic
();
network
.
view
.
flash
(
'Related Traffic'
);
}
function
showSelectTraffic
()
{
...
...
@@ -869,12 +871,14 @@
function
showAllTrafficAction
()
{
sendMessage
(
'requestAllTraffic'
,
{});
network
.
view
.
flash
(
'All Traffic'
);
}
function
showDeviceLinkFlowsAction
()
{
// force intents hover mode
hoverMode
=
2
;
showDeviceLinkFlows
();
network
.
view
.
flash
(
'Device Flows'
);
}
function
showDeviceLinkFlows
()
{
...
...
Please
register
or
login
to post a comment