Commit 21f7a095 authored by Frank Bergmann's avatar Frank Bergmann

- beautified

parent b6dad0b1
......@@ -55,7 +55,7 @@ Ext.define('PO.model.Project', {
var level = record.get('level');
var result = '';
while (level > 0) {
result = '       ' + result;
result = '   ' + result;
level = level - 1;
}
return result;
......
......@@ -33,7 +33,7 @@ Ext.define('PO.view.HourForm', {
}, {
xtype: 'selectfield',
name: 'project_id',
label: 'Project',
label: 'Task',
store: 'TimesheetTaskStore' // recycle the store of the TimesheetTaskList
}, {
xtype: 'hiddenfield',
......
......@@ -25,7 +25,6 @@ Ext.define('PO.view.SplashPage', {
'<br>&nbsp;<br>',
'<h1>]po[ Sencha Touch Timesheet</h1>',
'<br>&nbsp;<br>',
'<p>This demo shows how to list hierarchical projects and to log hours into a ]po[ backend.',
'</center>',
].join("")
}
......
......@@ -34,10 +34,13 @@ Ext.define('PO.view.TimesheetTaskList', {
'</div>'
),
inline: { wrap: false },
// scrollable: { direction: 'both', directionLock: true },
scrollable: 'both',
disclosure: true,
grouped: false,
indexBar: true,
scrollable: 'both',
indexBar: false,
onItemDisclosure: false
}
});
......@@ -45,4 +45,5 @@
.myContent {
margin-bottom: 0px;
font-size: 15px;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment