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:
authorThomas Steur <tsteur@users.noreply.github.com>2018-11-21 03:09:50 +0300
committerGitHub <noreply@github.com>2018-11-21 03:09:50 +0300
commit5757f29a83f03df2fbf3f61c4eefe0e3a692c9b9 (patch)
treeb80fa07ac6e47434758e528afd5a662124bf0e60 /plugins/Live
parent0b9d1319ad72aaeaa501f31ffbe2d2a4f0be956e (diff)
Tooltips appear all over the place but shouldn't (#13442)
* Tooltips appear all over the place but shouldn't fix #13305 Add a delay so tooltips don't appear immediately. Do not show any tooltip for any form field. In visitor log the titles are still shown immediately but there it is wanted maybe? I clicked through couple of pages and looked a bit in the code but it is hard to find all the places where a title attribute should be removed. Maybe we do this better over time. * Remove tooltip as the link already shows the same text
Diffstat (limited to 'plugins/Live')
-rw-r--r--plugins/Live/templates/_dataTableViz_visitorLog.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/templates/_dataTableViz_visitorLog.twig b/plugins/Live/templates/_dataTableViz_visitorLog.twig
index 02221fa485..f9d0b21a32 100644
--- a/plugins/Live/templates/_dataTableViz_visitorLog.twig
+++ b/plugins/Live/templates/_dataTableViz_visitorLog.twig
@@ -6,7 +6,7 @@
<div class="card row hoverable">
{% if visitor.getColumn('visitorId') is not empty and not clientSideParameters.hideProfileLink %}
- <a class="visitor-log-visitor-profile-link visitorLogTooltip" title="{{ 'Live_ViewVisitorProfile'|translate }}" data-visitor-id="{{ visitor.getColumn("visitorId") }}">
+ <a class="visitor-log-visitor-profile-link visitorLogTooltip" data-visitor-id="{{ visitor.getColumn("visitorId") }}">
<img src="plugins/Live/images/visitorProfileLaunch.png"/> <span>{{ 'Live_ViewVisitorProfile'|translate }}
{%- if visitor.getColumn('userId') is not empty %}: {{ visitor.getColumn('userId')|rawSafeDecoded }}{% endif %}</span>
</a>