forked from 0x2620/pandora
update files dialog
This commit is contained in:
parent
941948ba37
commit
75cc23f4b2
1 changed files with 37 additions and 3 deletions
|
@ -137,12 +137,45 @@ pandora.ui.filesDialog = function() {
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
$embedButton = Ox.Button({
|
||||||
|
title: 'embed',
|
||||||
|
tooltip: 'Embed',
|
||||||
|
type: 'image'
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
float: 'left',
|
||||||
|
margin: '4px 2px 4px 4px'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
$itemLabel = Ox.Label({
|
$itemLabel = Ox.Label({
|
||||||
textAlign: 'center',
|
textAlign: 'center',
|
||||||
title: 'No file selected',
|
title: 'No file selected',
|
||||||
width: itemWidth - 8
|
width: itemWidth - 48
|
||||||
})
|
})
|
||||||
.css({margin: '4px'}),
|
.css({
|
||||||
|
float: 'left',
|
||||||
|
margin: '4px'
|
||||||
|
}),
|
||||||
|
|
||||||
|
$closeButton = Ox.Button({
|
||||||
|
title: 'close',
|
||||||
|
tooltip: 'Close',
|
||||||
|
type: 'image'
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
float: 'left',
|
||||||
|
margin: '4px 4px 4px 2px'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function() {
|
||||||
|
$list.options({selected: []});
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
$item = Ox.Element().css({overflowY: 'scroll'}),
|
$item = Ox.Element().css({overflowY: 'scroll'}),
|
||||||
|
|
||||||
|
@ -357,6 +390,7 @@ pandora.ui.filesDialog = function() {
|
||||||
$list.value(file.id, 'id', result.data.id);
|
$list.value(file.id, 'id', result.data.id);
|
||||||
}
|
}
|
||||||
Ox.Request.clearCache('findFiles');
|
Ox.Request.clearCache('findFiles');
|
||||||
|
$list.reloadList();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -403,7 +437,7 @@ pandora.ui.filesDialog = function() {
|
||||||
function setWidth() {
|
function setWidth() {
|
||||||
var size;
|
var size;
|
||||||
itemWidth = $content.size(1);
|
itemWidth = $content.size(1);
|
||||||
$itemLabel.options({width: itemWidth - 8});
|
$itemLabel.options({width: itemWidth - 48});
|
||||||
if (selected) {
|
if (selected) {
|
||||||
size = getPreviewSize(),
|
size = getPreviewSize(),
|
||||||
$preview.options({
|
$preview.options({
|
||||||
|
|
Loading…
Reference in a new issue