aboutsummaryrefslogtreecommitdiff
path: root/src/dashboard/dashboard.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/dashboard/dashboard.js')
-rw-r--r--src/dashboard/dashboard.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/dashboard/dashboard.js b/src/dashboard/dashboard.js
new file mode 100644
index 0000000..245cdf5
--- /dev/null
+++ b/src/dashboard/dashboard.js
@@ -0,0 +1,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;
+
+
+});