diff options
Diffstat (limited to 'public/js/module.js')
-rw-r--r-- | public/js/module.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/js/module.js b/public/js/module.js new file mode 100644 index 0000000..ff4086f --- /dev/null +++ b/public/js/module.js @@ -0,0 +1,19 @@ +(function(window, $) { + 'use strict'; + + var Incubator = function (icinga) { + this.icinga = icinga; + }; + + Incubator.prototype = { + initialize: function (icinga) { + }, + + destroy: function () { + window.incubatorComponentLoader.destroy(); + this.icinga = null; + } + }; + + Icinga.availableModules.incubator = Incubator; +})(window, jQuery); |