X-Git-Url: https://git.mdrn.pl/ReadingsJQM.git/blobdiff_plain/73c898040d692af217751b7b8f0ff819c7d47004..b2dcc4cec0edb145ed13c26537c94b593691954f:/js/app/Config.js diff --git a/js/app/Config.js b/js/app/Config.js new file mode 100644 index 0000000..87a99b7 --- /dev/null +++ b/js/app/Config.js @@ -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);