no link if isMultiple
This commit is contained in:
parent
8ad02fb30d
commit
ee17d0cf03
1 changed files with 16 additions and 14 deletions
|
@ -421,20 +421,22 @@ pandora.ui.documentInfoView = function(data, isMixed) {
|
||||||
renderRightsLevel();
|
renderRightsLevel();
|
||||||
|
|
||||||
// Links
|
// Links
|
||||||
$('<div>')
|
if (!isMultiple) {
|
||||||
.css({marginTop: '16px', marginBottom: '16px', pointer: 'cursor'})
|
$('<div>')
|
||||||
.append('')
|
.css({marginTop: '16px', marginBottom: '16px', pointer: 'cursor'})
|
||||||
.append(
|
.append('')
|
||||||
Ox.Theme.formatColor(null, 'gradient')
|
.append(
|
||||||
.html('View Document')
|
Ox.Theme.formatColor(null, 'gradient')
|
||||||
.css({poiner: 'cursor'})
|
.html('View Document')
|
||||||
.on({
|
.css({poiner: 'cursor'})
|
||||||
click: function() {
|
.on({
|
||||||
pandora.UI.set({documentView: 'view'})
|
click: function() {
|
||||||
}
|
pandora.UI.set({documentView: 'view'})
|
||||||
})
|
}
|
||||||
)
|
})
|
||||||
.appendTo($statistics);
|
)
|
||||||
|
.appendTo($statistics);
|
||||||
|
}
|
||||||
|
|
||||||
function editMetadata(key, value) {
|
function editMetadata(key, value) {
|
||||||
if (value != data[key]) {
|
if (value != data[key]) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue