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>2019-04-12 00:03:03 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-04-12 00:03:03 +0300
commit49766472e7d3c658ceae76d8f0f58f7403a2f0f7 (patch)
treeea184e8c4598b2faa1afb8809b7a076f12396e69 /plugins/UserCountry
parent5ed09086f99b6656cc3227ded3c146b05046577e (diff)
Avoid browser tooltips for piwik fields (#13931)
by using data-title attribute instead of title
Diffstat (limited to 'plugins/UserCountry')
-rw-r--r--plugins/UserCountry/templates/_updaterManage.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/UserCountry/templates/_updaterManage.twig b/plugins/UserCountry/templates/_updaterManage.twig
index 571b3ce170..b5cab0aa11 100644
--- a/plugins/UserCountry/templates/_updaterManage.twig
+++ b/plugins/UserCountry/templates/_updaterManage.twig
@@ -13,7 +13,7 @@
<div piwik-field uicontrol="text" name="geoip-location-db"
ng-model="locationUpdater.locationDbUrl"
introduction="{{ 'UserCountry_LocationDatabase'|translate|e('html_attr') }}"
- title="{{ 'Actions_ColumnDownloadURL'|translate|e('html_attr') }}"
+ data-title="{{ 'Actions_ColumnDownloadURL'|translate|e('html_attr') }}"
value="{{ geoIPLocUrl }}"
inline-help="{{ 'UserCountry_LocationDatabaseHint'|translate|e('html_attr') }}">
</div>
@@ -21,7 +21,7 @@
<div piwik-field uicontrol="text" name="geoip-isp-db"
ng-model="locationUpdater.ispDbUrl"
introduction="{{ 'UserCountry_ISPDatabase'|translate|e('html_attr') }}"
- title="{{ 'Actions_ColumnDownloadURL'|translate|e('html_attr') }}"
+ data-title="{{ 'Actions_ColumnDownloadURL'|translate|e('html_attr') }}"
value="{{ geoIPIspUrl }}">
</div>
@@ -29,7 +29,7 @@
<div piwik-field uicontrol="text" name="geoip-org-db"
ng-model="locationUpdater.orgDbUrl"
introduction="{{ 'UserCountry_OrgDatabase'|translate|e('html_attr') }}"
- title="{{ 'Actions_ColumnDownloadURL'|translate|e('html_attr') }}"
+ data-title="{{ 'Actions_ColumnDownloadURL'|translate|e('html_attr') }}"
value="{{ geoIPOrgUrl }}">
</div>
{% endif %}