dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
57 lines (49 loc) • 1.31 kB
JSON
{
"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"
}
}
}