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')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index a39014d4c6..db7f781bf3 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -1692,7 +1692,18 @@ $.extend(DataTable.prototype, UIControl.prototype, {
if (scope) {
var $doc = domElem.find('.reportDocumentation');
if ($doc.length) {
+ // hackish solution to get binded html of p tag within the help node
+ // at this point the ng-bind-html is not yet converted into html when report is not
+ // initially loaded. Using $compile doesn't work. So get and set it manually
+ var helpParagraph = $('p[ng-bind-html]', $doc);
+
+ if (helpParagraph.length) {
+ var $parse = angular.element(document).injector().get('$parse');
+ helpParagraph.html($parse(helpParagraph.attr('ng-bind-html')));
+ }
+
scope.inlineHelp = $.trim($doc.html());
+
}
scope.featureName = $.trim(relatedReportName);
setTimeout(function (){