From 343aa5f5649b8902610e3ec3acacf0845d7734c9 Mon Sep 17 00:00:00 2001 From: rlx Date: Fri, 10 Aug 2018 11:39:23 +0100 Subject: [PATCH] add correlations dialog to menu --- static/js/localInit.cms.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/localInit.cms.js b/static/js/localInit.cms.js index ed4b036..3ef2985 100644 --- a/static/js/localInit.cms.js +++ b/static/js/localInit.cms.js @@ -31,6 +31,7 @@ pandora.localInit = function() { items: [ {id: 'rename', title: 'Rename Keyword...'}, {id: 'manage', title: 'Manage Keywords...'}, + {id: 'correlations', title: 'Show Correlations...'}, {id: 'ontology', title: 'Open Ontology Graph'}, ], style: 'rounded', @@ -43,6 +44,8 @@ pandora.localInit = function() { pandora.ui.renameKeywordDialog().open() } else if (data.id == 'manage') { pandora.ui.manageKeywordsDialog().open() + } else if (data.id == 'manage') { + pandora.ui.correlationsDialog().open() } else if (data.id == 'ontology') { pandora.openLink('/static/ontology/'); }