From 4c2cabb50b0b39621d0dda74f2ffb5120f825c1d Mon Sep 17 00:00:00 2001 From: Christoph Held Date: Mon, 29 Jan 2018 13:11:01 +0100 Subject: [PATCH] Fixing 'Create Alarm Definition' for IE11 The widget ngTags is used to select dimensions. This widget does not work with IE 11 and the AngularJS versions provided by Horizon. Replacing ng-click event with ng-mousedown event, because the ng-click event does not fire on IE11 in the given dialog layout. Change-Id: I9918debd164dce7ddc4bba15a07d6f3edddc7a09 Story: 2001504 Task: 6295 --- monitoring/static/monitoring/js/ng-tags-input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring/static/monitoring/js/ng-tags-input.js b/monitoring/static/monitoring/js/ng-tags-input.js index 555e2595..5a55c387 100755 --- a/monitoring/static/monitoring/js/ng-tags-input.js +++ b/monitoring/static/monitoring/js/ng-tags-input.js @@ -772,7 +772,7 @@ tagsInput.run(["$templateCache", function($templateCache) { ); $templateCache.put('ngTagsInput/auto-complete.html', - "
" + "
" ); }]);