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:
authorsgiehl <stefan@piwik.org>2013-08-13 18:17:38 +0400
committersgiehl <stefan@piwik.org>2013-08-14 15:02:40 +0400
commitaa8b2f1f0e6d1bc9af62694448f33d125bf8141a (patch)
tree60521bcc9cd425460de99661498e317d80f90893 /plugins/UserCountryMap/templates/visitorMap.twig
parentd6c007dd4e87b0250a5ee3b2d6b50ec6e755af0c (diff)
added missing ';' / use double quotes for attribute values instead of single quotes
Diffstat (limited to 'plugins/UserCountryMap/templates/visitorMap.twig')
-rw-r--r--plugins/UserCountryMap/templates/visitorMap.twig10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/UserCountryMap/templates/visitorMap.twig b/plugins/UserCountryMap/templates/visitorMap.twig
index 45a2519138..be9c5e50e2 100644
--- a/plugins/UserCountryMap/templates/visitorMap.twig
+++ b/plugins/UserCountryMap/templates/visitorMap.twig
@@ -1,6 +1,6 @@
<div class="UserCountryMap" style="position:relative; overflow:hidden;">
<div class="UserCountryMap_container">
- <div class="UserCountryMap_map" style="overflow:hidden"></div>
+ <div class="UserCountryMap_map" style="overflow:hidden;"></div>
<div class="UserCountryMap-overlay UserCountryMap-title">
<div class="content">
<!--<div class="map-title" style="font-weight:bold; color:#9A9386;"></div>-->
@@ -44,22 +44,22 @@
<a var="tableAllColumns" class="UserCountryMap-btn-region tableIcon activeIcon" format="tableAllColumns"
data-region="{{ 'UserCountryMap_Regions'|translate }}" data-country="{{ 'UserCountryMap_Countries'|translate }}">
<img src="{{ piwikUrl }}plugins/UserCountryMap/images/regions.png" title="Show visitors per region/country" />
- <span style="margin:0">{{ 'UserCountryMap_Countries'|translate }}</span>&nbsp;
+ <span style="margin:0;">{{ 'UserCountryMap_Countries'|translate }}</span>&nbsp;
</a>
<a var="tableGoals" class="UserCountryMap-btn-city tableIcon inactiveIco" format="tableGoals">
<img src="{{ piwikUrl }}plugins/UserCountryMap/images/cities.png" title="Show visitors per city" />
- <span style="margin:0">{{ 'UserCountryMap_Cities'|translate }}</span>&nbsp;
+ <span style="margin:0;">{{ 'UserCountryMap_Cities'|translate }}</span>&nbsp;
</a>
</span>
</div>
</div>
- <select class="userCountryMapSelectMetrics" style="float:right;margin-right:0;margin-bottom:5px;max-width: 9em;font-size:10px">
+ <select class="userCountryMapSelectMetrics" style="float:right;margin-right:0;margin-bottom:5px;max-width: 9em;font-size:10px;">
{% for metric in metrics %}
<option value="{{ metric[0] }}" {% if metric[0] == defaultMetric %}selected="selected"{% endif %}}>{{ metric[1] }}</option>
{% endfor %}
</select>
- <select class="userCountryMapSelectCountry" style="float:right;margin-right:5px;margin-bottom:5px; max-width: 9em;font-size:10px">
+ <select class="userCountryMapSelectCountry" style="float:right;margin-right:5px;margin-bottom:5px; max-width: 9em;font-size:10px;">
<option value="world">{{ 'UserCountryMap_WorldWide'|translate }}</option>
<option disabled="disabled">––––––</option>
<option value="AF">{{ 'UserCountry_continent_afr'|translate }}</option>