pandora/static/js/reloadButton.js
2013-07-29 08:50:23 +00:00

19 lines
373 B
JavaScript

'use strict';
pandora.ui.reloadButton = function() {
var that = Ox.Button({
style: 'symbol',
title: 'reload',
tooltip: Ox._('Reload Application'),
type: 'image'
})
.bindEvent({
click: function() {
pandora.ui.appPanel.reload();
}
});
return that;
};