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/dataTable.js')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index 76859d7408..8d19e71752 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -1931,13 +1931,13 @@ $.extend(DataTable.prototype, UIControl.prototype, {
// ensure the tooltips of parent elements are hidden when the action tooltip is shown
// otherwise it can happen that tooltips for subtable rows are shown as well.
open: function() {
- var tooltip = $(this).parents('[piwik-widget]').tooltip('instance');
+ var tooltip = $(this).parents('.matomo-widget').tooltip('instance');
if (tooltip) {
tooltip.disable();
}
},
close: function() {
- var tooltip = $(this).parents('[piwik-widget]').tooltip('instance');
+ var tooltip = $(this).parents('.matomo-widget').tooltip('instance');
if (tooltip) {
tooltip.enable();
}