The following syntax is uses what js framework ? Not nodejs and angularjs, I'm not familiar with this syntax
Thanks everyone
define({
name: 'app',
requires: [
'views/initPage'
],
def: function appInit() {
'use strict';
/**
* Initiates module.
*/
function init() {
console.log('app::init');
}
return {
init: init
};
}
});