diff --git a/public/js/icinga/loader.js b/public/js/icinga/loader.js
index dca88c394..83a13326c 100644
--- a/public/js/icinga/loader.js
+++ b/public/js/icinga/loader.js
@@ -691,11 +691,12 @@
var $content = $('
' + content + '
');
// Disable all click events while rendering
- $('*').click(function (event) {
- event.stopImmediatePropagation();
- event.stopPropagation();
- event.preventDefault();
- });
+ // (Disabling disabled, was ways too slow)
+ // $('*').click(function (event) {
+ // event.stopImmediatePropagation();
+ // event.stopPropagation();
+ // event.preventDefault();
+ // });
$('.container', $container).each(function() {
self.stopPendingRequestsFor($(this));
@@ -738,8 +739,8 @@
icinga.ui.initializeControls($container);
icinga.ui.fixControls();
- // Re-enable all click events
- $('*').off('click');
+ // Re-enable all click events (disabled as of performance reasons)
+ // $('*').off('click');
},
/**