web-apps/apps/documenteditor/mobile/app/view/phone/toolbar/View.js

61 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
Ext.define('DE.view.phone.toolbar.View', {
extend: 'Ext.Toolbar',
xtype: 'viewtoolbar',
config: {
docked : 'top',
zIndex : 10,
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-incfontsize',
ui : 'base',
iconCls : 'textbigger',
hidden : true
},
{
id : 'id-tb-btn-decfontsize',
ui : 'base',
iconCls : 'textless',
hidden : true
},
{
id : 'id-tb-btn-search',
ui : 'base',
iconCls : 'search'
},
{
id : 'id-tb-btn-fullscreen',
ui : 'base',
iconCls : 'fullscreen'
},
{
xtype : 'spacer'
},
{
id : 'id-tb-btn-view-share',
ui : 'base',
iconCls : 'share'
}
]);
this.callParent(arguments);
},
doneText : 'Done',
readerText : 'Reader'
});