summaryrefslogtreecommitdiffstats
path: root/app/app.constants.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.constants.js')
-rw-r--r--app/app.constants.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/app.constants.js b/app/app.constants.js
new file mode 100644
index 0000000..274edcb
--- /dev/null
+++ b/app/app.constants.js
@@ -0,0 +1,20 @@
+(function () {
+ 'use strict';
+
+ angular
+ .module('dcaeApp')
+ .constant("dcaeConstants", {
+
+ params: {
+ "param1": "param1",
+ "param2": "param2",
+ "param3": "param3"
+ },
+
+ more: {
+ "more1": "more1",
+ "more2": "mroe2"
+ }
+
+ });
+})();