summaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/actions/vedge-info-window.actions.js
diff options
context:
space:
mode:
authorYaron Yogev <yaronyogev@gmail.com>2017-10-03 10:14:14 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-10-03 10:14:14 +0000
commit9e9c95952ca2a7efeafd316fff107b95fdd0f0b5 (patch)
tree6ad620ebc1f9adf6bf9fc671d88ea0adf8e7fe07 /ui/imports/ui/actions/vedge-info-window.actions.js
parent929a33a1cf8854e06d13e5ef352a48759c9ba2d5 (diff)
parent1fff14f0a5e25adaa851537c71c7bd8381c1bbb1 (diff)
Merge "ui move to docker" into stable/euphrates
Diffstat (limited to 'ui/imports/ui/actions/vedge-info-window.actions.js')
-rw-r--r--ui/imports/ui/actions/vedge-info-window.actions.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/imports/ui/actions/vedge-info-window.actions.js b/ui/imports/ui/actions/vedge-info-window.actions.js
deleted file mode 100644
index 2ff3031..0000000
--- a/ui/imports/ui/actions/vedge-info-window.actions.js
+++ /dev/null
@@ -1,33 +0,0 @@
-//import * as R from 'ramda';
-
-export const ACTIVATE_VEDGE_INFO_WINDOW = 'ACTIVATE_VEDGE_INFO_WINDOW';
-export const CLOSE_VEDGE_INFO_WINDOW = 'CLOSE_VEDGE_INFO_WINDOW';
-
-export function activateVedgeInfoWindow(node, left, top) {
- // todo: remove. this is for debug
- /*
- node = {
- _id: '0',
- id: 'devstack-vpp1-VPP',
- id_path: '',
- name: 'devstack-vpp1-VPP',
- name_path: '',
- environment: 'Devstack-VPP'
- };
- */
-
- return {
- type: ACTIVATE_VEDGE_INFO_WINDOW,
- payload: {
- node: node,
- left: left,
- top: top
- }
- };
-}
-
-export function closeVedgeInfoWindow() {
- return {
- type: CLOSE_VEDGE_INFO_WINDOW
- };
-}