1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| if (SimpleTasksSettings.useLocalStorage && !Ext.supports.LocalStorage) {
| alert('Simple Tasks is configured to use HTML5 Local Storage, but your browser does not support Local Storage');
| } else {
| Ext.Loader.setPath('Ext.ux', '../ux/')
| Ext.Loader.setConfig({
| enabled: true
| });
| Ext.application({
| name: 'SimpleTasks',
| autoCreateViewport: true,
| controllers: ['Lists', 'Tasks'],
| launch: function() {
| Ext.optionsToolbarAlign = 'br-br';
| }
| });
| }
|
|