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:
authordizzy <diosmosis@users.noreply.github.com>2022-07-27 18:30:19 +0300
committerGitHub <noreply@github.com>2022-07-27 18:30:19 +0300
commit1869d8c8dae99be2fabd7b98f0e048bc8712e590 (patch)
tree7bfc98680f47146d04fa8027663f3752ca40cc5f /plugins/CoreHome/javascripts
parentb76bdae23f2e16f66568ea27b69b7b65bfaa8e05 (diff)
[Vue] remove use of angularjs from Transitions (#19383)
* move transitions.twig contents to new vue component and create TransitionExporterLink component to use transition-exporter link in vue w/o angularjs directive * do not use angularjs services in transitions.js * built vue files * fixing some issues * add alternative way for widget twig templates to tell CoreHome/Controller.php that it contains its own content block * built vue files * allow vue components in popups and remove console log * update screenshots * remove use of unneeded html_attr filter * updates expected test files Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'plugins/CoreHome/javascripts')
-rw-r--r--plugins/CoreHome/javascripts/popover.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/popover.js b/plugins/CoreHome/javascripts/popover.js
index 5d063be147..d283853962 100644
--- a/plugins/CoreHome/javascripts/popover.js
+++ b/plugins/CoreHome/javascripts/popover.js
@@ -205,9 +205,10 @@ var Piwik_Popover = (function () {
}
container.html(html);
-
+
container.children().each(function (i, childNode) {
piwikHelper.compileAngularComponents(childNode);
+ piwikHelper.compileVueEntryComponents(childNode);
});
centerPopover();