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.
25 lines (19 loc) • 453 B
JavaScript
define([], function(){
return {
init: function(){
console.log("In view5 init called");
},
beforeActivate: function(){
console.log("In view5 beforeActivate called");
},
afterActivate: function(){
console.log("In view5 afterActivate called");
},
beforeDeactivate: function(){
console.log("In view5 beforeDeactivate called");
},
afterDeactivate: function(){
console.log("In view5 afterDeactivate called");
}
}
});