|
9
|
1 |
// |
|
|
2 |
// Config file. Split out from the app for ease of overlaying a new config |
|
|
3 |
// without affecting the app controller. |
|
|
4 |
// |
|
|
5 |
// Copyright (c) The Dojo Foundation 2011. All Rights Reserved. |
|
|
6 |
// |
|
|
7 |
var dojoConfig = { |
|
|
8 |
baseUrl: '/renkan', |
|
|
9 |
async:true, |
|
|
10 |
paths : { |
|
|
11 |
coweb : 'lib/coweb', |
|
|
12 |
cowebx: 'lib/cowebx', |
|
|
13 |
org : 'lib/org' |
|
|
14 |
}, |
|
|
15 |
packages:[{ |
|
|
16 |
name: 'dojo', |
|
|
17 |
location:'https://ajax.googleapis.com/ajax/libs/dojo/1.7.0/dojo', |
|
|
18 |
main:'main' |
|
|
19 |
}, |
|
|
20 |
{ |
|
|
21 |
name: 'dijit', |
|
|
22 |
location:'https://ajax.googleapis.com/ajax/libs/dojo/1.7.0/dijit', |
|
|
23 |
main:'main' |
|
|
24 |
}, |
|
|
25 |
{ |
|
|
26 |
name: 'dojox', |
|
|
27 |
location:'https://ajax.googleapis.com/ajax/libs/dojo/1.7.0/dojox', |
|
|
28 |
main:'main' |
|
|
29 |
}] |
|
|
30 |
}; |
|
|
31 |
|