refine menu
This commit is contained in:
parent
9c89b6747a
commit
d7fd474c58
2 changed files with 6 additions and 6 deletions
|
@ -1082,8 +1082,8 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
|
|||
"title": "Subtitles",
|
||||
"canAddAnnotations": {"staff": true, "admin": true},
|
||||
"canPlayClips": true,
|
||||
"hasEvents": true,
|
||||
"hasPlaces": true,
|
||||
"hasEvents": false,
|
||||
"hasPlaces": false,
|
||||
"isSubtitles": true,
|
||||
"item": "Subtitle",
|
||||
"type": "text"
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
pandora.localInit = function() {
|
||||
var plugins = [];
|
||||
|
||||
if (pandora.user.level == 'admin') {
|
||||
plugins.push(ExtrasMenu());
|
||||
}
|
||||
plugins.push(ExtrasMenu());
|
||||
|
||||
plugins.length && load();
|
||||
|
||||
|
@ -29,11 +27,13 @@ pandora.localInit = function() {
|
|||
},
|
||||
$item = Ox.MenuButton({
|
||||
items: [
|
||||
].concat(pandora.user.level == 'admin' ? [
|
||||
{id: 'rename', title: 'Rename Keyword...'},
|
||||
{id: 'manage', title: 'Manage Keywords...'},
|
||||
] : [], [
|
||||
{id: 'correlations', title: 'Show Correlations...'},
|
||||
{id: 'ontology', title: 'Open Ontology Graph'},
|
||||
],
|
||||
]),
|
||||
style: 'rounded',
|
||||
title: 'set',
|
||||
tooltip: Ox._('Extras'),
|
||||
|
|
Loading…
Reference in a new issue