openmedialibrary/static/js/previewButton.js

33 lines
787 B
JavaScript
Raw Normal View History

2014-05-04 17:26:43 +00:00
'use strict';
oml.ui.previewButton = function() {
var ui = oml.user.ui,
that = Ox.Button({
selectable: true,
style: 'squared',
title: 'view',
2014-09-29 13:17:59 +00:00
tooltip: Ox._('Preview {0}', [Ox.SYMBOLS.space]),
2014-05-04 17:26:43 +00:00
type: 'image'
})
.css({
float: 'left',
margin: '4px 2px'
})
.bindEvent({
change: function(data) {
oml.$ui.list[data.value ? 'openPreview' : 'closePreview']();
},
oml_listselection: function() {
2014-05-17 11:45:57 +00:00
that.updateElement();
2014-05-04 17:26:43 +00:00
}
});
2014-05-17 11:45:57 +00:00
that.updateElement = function() {
2014-05-04 17:26:43 +00:00
return that.options({disabled: ui.listSelection.length == 0});
};
2014-05-17 11:45:57 +00:00
return that.updateElement();
2014-05-04 17:26:43 +00:00
};