LEFT | RIGHT |
1 var juju_config = { | 1 var juju_config = { |
2 // These are blacklisted config items not passed into subapps mounted into | 2 // These are blacklisted config items not passed into subapps mounted into |
3 // the main App. | 3 // the main App. |
4 serverRouting: false, | 4 serverRouting: false, |
5 html5: true, | 5 html5: true, |
6 container: '#main', | 6 container: '#main', |
7 viewContainer: '#main', | 7 viewContainer: '#main', |
8 // FIXME: turn off transitions until they are fixed. | 8 // FIXME: turn off transitions until they are fixed. |
9 transitions: false, | 9 transitions: false, |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 socket_port: 8081, | 23 socket_port: 8081, |
24 user: 'admin', | 24 user: 'admin', |
25 password: 'admin', | 25 password: 'admin', |
26 apiBackend: 'python', // Value can be 'python' or 'go'. | 26 apiBackend: 'python', // Value can be 'python' or 'go'. |
27 sandbox: true, | 27 sandbox: true, |
28 // When in sandbox mode should we create events to simulate a live env. | 28 // When in sandbox mode should we create events to simulate a live env. |
29 simulateEvents: true, | 29 simulateEvents: true, |
30 readOnly: false, | 30 readOnly: false, |
31 login_help: 'For this demonstration, use the password "admin" to connect.' | 31 login_help: 'For this demonstration, use the password "admin" to connect.' |
32 }; | 32 }; |
LEFT | RIGHT |