sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
1.3 KiB

{
"id": "globalizedApp",
"name": "globalizedApp",
"description": "A simple app to show how to plug custom controllers",
"loaderConfig": {
"paths": {
"globalizedApp": "../dojox/app/tests/globalizedApp"
}
},
"nls": "globalizedApp/nls/app",
"modules": [
],
// Array of AMD modules identifiers. Controllers for the application. All the controllers defined here will be
// loaded during application startup to respond to application events and controller the application logic.
"controllers": [
"dojox/app/controllers/Load",
"dojox/app/controllers/Transition",
"dojox/app/controllers/Layout"
],
// The has section will include the sections for which the has checks are true.
// For the sections with ! it will include the section if the has check is not true.
"has" : {
"ie9orLess" : {
"controllers": [
"dojox/app/controllers/HistoryHash"
]
},
"!ie9orLess" : {
"controllers": [
"dojox/app/controllers/History"
]
}
},
"defaultView": "home",
"views": {
"home": {
"template": "globalizedApp/home.html",
"nls": "globalizedApp/nls/home",
"dependencies": [
"dojox/mobile/RoundRectList",
"dojox/mobile/ListItem"
]
},
"detail": {
"controller" : "globalizedApp/detail.js",
"template": "globalizedApp/detail.html"
}
}
}