Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CoreHome/javascripts/popover.js')
-rw-r--r--plugins/CoreHome/javascripts/popover.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/popover.js b/plugins/CoreHome/javascripts/popover.js
index 28cad1f3f9..2834432e70 100644
--- a/plugins/CoreHome/javascripts/popover.js
+++ b/plugins/CoreHome/javascripts/popover.js
@@ -162,8 +162,11 @@ var Piwik_Popover = (function () {
closeCallback = false;
}
- container[0].innerHTML = ''; // IE8 fix
container.html(html);
+
+ container.children().each(function (i, childNode) {
+ piwikHelper.compileAngularComponents(childNode);
+ })
centerPopover();
},