first take
[ReadingsJQM.git] / js / app / Config.js
diff --git a/js/app/Config.js b/js/app/Config.js
new file mode 100644 (file)
index 0000000..87a99b7
--- /dev/null
@@ -0,0 +1,17 @@
+(function() {
+
+  Readings.Config = (function() {
+
+    function Config(opts) {
+      this.opts = opts;
+    }
+
+    Config.prototype.get = function(name) {
+      return this.opts[name];
+    };
+
+    return Config;
+
+  })();
+
+}).call(this);