summaryrefslogtreecommitdiffstats
path: root/public/js/module.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:23:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:23:16 +0000
commit3e97c51418e6d27e9a81906f347fcb7c78e27d4f (patch)
treeee596ce1bc9840661386f96f9b8d1f919a106317 /public/js/module.js
parentInitial commit. (diff)
downloadicingaweb2-module-incubator-3e97c51418e6d27e9a81906f347fcb7c78e27d4f.tar.xz
icingaweb2-module-incubator-3e97c51418e6d27e9a81906f347fcb7c78e27d4f.zip
Adding upstream version 0.20.0.upstream/0.20.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'public/js/module.js')
-rw-r--r--public/js/module.js19
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);