add correlations dialog to menu
This commit is contained in:
parent
0591a9efc3
commit
343aa5f564
1 changed files with 3 additions and 0 deletions
|
@ -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/');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue