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/Marketplace
parent5ed09086f99b6656cc3227ded3c146b05046577e (diff)
Avoid browser tooltips for piwik fields (#13931)
by using data-title attribute instead of title
Diffstat (limited to 'plugins/Marketplace')
-rw-r--r--plugins/Marketplace/templates/overview.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Marketplace/templates/overview.twig b/plugins/Marketplace/templates/overview.twig
index a8a0a2031b..55091e9e96 100644
--- a/plugins/Marketplace/templates/overview.twig
+++ b/plugins/Marketplace/templates/overview.twig
@@ -35,14 +35,14 @@
class="col s12 m6 l4"
ng-model="marketplace.pluginType"
ng-change="marketplace.changePluginType()"
- title="{{ 'Show'|translate|e('html_attr') }}"
+ data-title="{{ 'Show'|translate|e('html_attr') }}"
value="{{ pluginType }}"
full-width="true"
options="{{ pluginTypeOptions|json_encode }}">
</div>
<div piwik-field uicontrol="select" name="plugin_sort"
- title="{{ 'Sort'|translate|e('html_attr') }}"
+ data-title="{{ 'Sort'|translate|e('html_attr') }}"
value="{{ sort }}"
ng-model="marketplace.pluginSort"
ng-change="marketplace.changePluginSort()"
@@ -56,7 +56,7 @@
<div class="col s12 m12 l4 ">
<form action="{{ linkTo({'sort': ''}) }}" method="post" class="plugin-search">
<div piwik-field uicontrol="text" name="query"
- title="{{ 'General_Search'|translate }} {{ numAvailablePlugins }} {{ 'General_Plugins'|translate|lcfirst }}..."
+ data-title="{{ 'General_Search'|translate }} {{ numAvailablePlugins }} {{ 'General_Plugins'|translate|lcfirst }}..."
value="{{ query }}"
full-width="true">
</div>