-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
37 lines (31 loc) · 995 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
name: 'MyApp',
appFolder: 'app',
searchGlobal: 'string',
congFilt: 'string',
topicFilt: 'string',
speakFilt: 'string',
listGlobal: 'string',
requires: [
'MyApp.view.MainPanel', 'MyApp.view.ResultsPanel', 'MyApp.view.VideoPlayer',
'MyApp.view.SettingsPanel', 'MyApp.view.HelpPanel', 'MyApp.view.LivePanel',
'MyApp.view.PlaylistPanel',
],
views : ['MainPanel', 'ResultsPanel', 'VideoPlayer', 'SettingsPanel', 'HelpPanel', 'PlaylistPanel', 'LivePanel','View', 'PlayOverlay', 'AddedOverlay'],
controllers: ['Processes', 'Menu', 'Navigation'],
stores: ['Videos', 'SearchRecords', 'Playlist'],
launch: function() {
console.log('Application launch');
Ext.create('Ext.Container', {
fullscreen: true,
layout: 'vbox',
items: [{
flex: 1,
xtype: 'View'
}]
});
}
});