blob: 245cdf5c8a4316abffea10128b918d8de6abd29a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
define(['services', 'moment', 'constants', 'dashboard/dashboard.model'], function(_services, moment, CONSTANTS, DASHBOARD_MODEL) {
var DASHBOARD_MODULE = {
init: function(){
console.log("INIT");
anotherMethod("Kool")
},
anotherMethod : function() {
console.log("Param ",param);
}
};
return DASHBOARD_MODULE;
});
|