documents panel: add tooltips
This commit is contained in:
parent
a49c0ec276
commit
aad6d26a44
1 changed files with 3 additions and 0 deletions
|
@ -489,6 +489,7 @@ pandora.ui.documentsPanel = function(options) {
|
|||
.append(
|
||||
$name = Ox.EditableContent({
|
||||
editable: editable,
|
||||
tooltip: editable ? pandora.getEditTooltip('name') : '',
|
||||
value: item.name,
|
||||
width: width
|
||||
})
|
||||
|
@ -527,6 +528,7 @@ pandora.ui.documentsPanel = function(options) {
|
|||
},
|
||||
height: width,
|
||||
placeholder: 'No description',
|
||||
tooltip: editable ? pandora.getEditTooltip('description') : '',
|
||||
type: 'textarea',
|
||||
value: item.description || '',
|
||||
width: width
|
||||
|
@ -720,6 +722,7 @@ pandora.ui.documentsPanel = function(options) {
|
|||
return Ox.ImageElement({
|
||||
height: size.height,
|
||||
src: src,
|
||||
tooltip: 'Click to open document',
|
||||
width: size.width
|
||||
})
|
||||
.css({
|
||||
|
|
Loading…
Reference in a new issue