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:
authordiosmosis <diosmosis@users.noreply.github.com>2022-11-13 23:05:31 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2022-11-13 23:05:31 +0300
commit5b25a47161507b0d3f26855bc300d1a44e1d7f48 (patch)
tree48275c9f81769475e7c68101aa0e0e405ba5a552
parent907bce309a6d858e5456c92ffdb91d5777ca08e2 (diff)
compile vue entry components when replacing html in live widgetcompile-vue-in-live-widget
-rw-r--r--plugins/Live/javascripts/live.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Live/javascripts/live.js b/plugins/Live/javascripts/live.js
index 7ef5807d58..441b73198b 100644
--- a/plugins/Live/javascripts/live.js
+++ b/plugins/Live/javascripts/live.js
@@ -67,6 +67,7 @@
ajaxRequest.setCallback(function (r) {
if (that.options.replaceContent) {
$(that.element).html(r);
+ piwikHelper.compileVueEntryComponents(that.element);
if (that.options.fadeInSpeed) {
$(that.element).effect("highlight", {}, that.options.fadeInSpeed);
}