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:
authorStefan Giehl <stefan@matomo.org>2022-03-04 04:08:27 +0300
committerGitHub <noreply@github.com>2022-03-04 04:08:27 +0300
commitbfa3a03804d4feec7efe01145ab5dfd9b9a1aeb7 (patch)
treee850cb51901762c199938622792c073b31097041 /plugins
parentfe9f9303352fa57fe640179b95d03bcc6df6b922 (diff)
Remove subtable tooltip if rows are displayed expanded upon search (#18874)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Actions/javascripts/actionsDataTable.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Actions/javascripts/actionsDataTable.js b/plugins/Actions/javascripts/actionsDataTable.js
index 797ce0b8f8..05434e2773 100644
--- a/plugins/Actions/javascripts/actionsDataTable.js
+++ b/plugins/Actions/javascripts/actionsDataTable.js
@@ -5,7 +5,7 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
- (function ($, require) {
+(function ($, require) {
var exports = require('piwik/UI'),
DataTable = exports.DataTable,
@@ -127,6 +127,8 @@
.each(function () {
if (self.param.filter_pattern_recursive) {
$(this).addClass('expanded');
+ // remove tooltip "Click this row to expand or contract the subtable"
+ $(this).attr('title', '');
}
});