web-apps/apps/presentationeditor/mobile/app/view/phone/toolbar/View.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

57 lines
1.4 KiB
JavaScript

Ext.define('PE.view.phone.toolbar.View', {
extend: 'Ext.Toolbar',
xtype: 'viewtoolbar',
config: {
docked : 'top',
minHeight : 44,
ui : 'edit'
},
initialize: function() {
this.add([
{
id : 'id-tb-btn-view-done',
ui : 'base-blue',
cls : 'text-offset-12',
hidden : true,
text : this.doneText
},
{
xtype : 'spacer'
},
{
id : 'id-tb-btn-prev-slide',
ui : 'base',
iconCls : 'left'
},
{
id : 'id-tb-btn-play',
ui : 'base',
iconCls : 'play'
},
{
id : 'id-tb-btn-next-slide',
ui : 'base',
iconCls : 'right'
},
{
xtype : 'spacer'
},
{
id : 'id-tb-btn-view-share',
ui : 'base',
iconCls : 'share'
},
{
id : 'id-tb-btn-fullscreen',
ui : 'base',
iconCls : 'fullscreen'
}
]);
this.callParent(arguments);
},
doneText: 'Done'
});