From 2719dea775d9a99086a78391b7dfc3cd6c5fc4dd Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 31 Oct 2014 16:43:52 -0700 Subject: [PATCH] [Framework] Add constants Add AMD module to store Constants used in framework. WTD-518. --- platform/framework/src/Constants.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 platform/framework/src/Constants.js diff --git a/platform/framework/src/Constants.js b/platform/framework/src/Constants.js new file mode 100644 index 0000000000..1c14b2c248 --- /dev/null +++ b/platform/framework/src/Constants.js @@ -0,0 +1,10 @@ +/*global define*/ + +/** + * Constants used by the framework. + */ +define({ + MODULE_NAME: "OpenMCTWeb", + BUNDLE_LISTING_FILE: "bundles.json", + BUNDLE_FILE: "bundle.json" +}); \ No newline at end of file