From 9fbe7512a473cb617817d079236902ea539d68dc Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 22 Feb 2017 05:02:13 +0300 Subject: [PATCH] added child-process-peer... Signed-off-by: Alex A. Naanou --- ui (gen4)/features/peer.js | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/ui (gen4)/features/peer.js b/ui (gen4)/features/peer.js index e881a47e..5c2bdaa4 100755 --- a/ui (gen4)/features/peer.js +++ b/ui (gen4)/features/peer.js @@ -143,12 +143,32 @@ module.Peer = core.ImageGridFeatures.Feature({ title: '', doc: '', - tag: 'child', + tag: 'peer', actions: PeerActions, }) + +//--------------------------------------------------------------------- + +var ChildProcessPeerActions = actions.Actions({ +}) + + +var ChildProcessPeer = +module.ChildProcessPeer = core.ImageGridFeatures.Feature({ + title: '', + doc: '', + + tag: 'child-process-peer', + + actions: ChildProcessPeerActions, +}) + + + + /********************************************************************** * vim:set ts=4 sw=4 : */ return module })