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:
Diffstat (limited to 'plugins/UserCountryMap/templates/realtime-map.tpl')
-rw-r--r--plugins/UserCountryMap/templates/realtime-map.tpl60
1 files changed, 32 insertions, 28 deletions
diff --git a/plugins/UserCountryMap/templates/realtime-map.tpl b/plugins/UserCountryMap/templates/realtime-map.tpl
index 231ecd5ddb..583eed74fa 100644
--- a/plugins/UserCountryMap/templates/realtime-map.tpl
+++ b/plugins/UserCountryMap/templates/realtime-map.tpl
@@ -3,7 +3,8 @@
<div id="RealTimeMap_container">
<div id="RealTimeMap_map" style="overflow:hidden"></div>
<div class="realTimeMap_overlay">
- <span class="showing_visits_of" style="display:none">{'UserCountryMap_ShowingVisits'|translate} <span class="realTimeMap_timeSpan" style="font-weight:bold"></span></span>
+ <span class="showing_visits_of" style="display:none">{'UserCountryMap_ShowingVisits'|translate} <span class="realTimeMap_timeSpan"
+ style="font-weight:bold"></span></span>
<span class="no_data" style="display:none">{'CoreHome_ThereIsNoDataForThisReport'|translate}</span>
<span class="loading_data">{'General_LoadingData'|translate}...</span>
<img src="{$piwikUrl}plugins/UserCountryMap/img/realtimemap-loading.gif" style="vertical-align:baseline;position:relative;left:-2px;">
@@ -21,26 +22,29 @@
<!-- configure some piwik vars -->
<script type="text/javascript">
-{* If the map is loaded from the menu, do a few tweaks to clean up the display *}
-{if $mapIsStandaloneNotWidget}
- function initStandaloneMap() {ldelim}
- $('.top_controls').hide();
- $('ul.nav').on('piwikSwitchPage', function(event, item) {ldelim}
- var clickedMenuIsNotMap = ($(item).text() != "{'UserCountryMap_RealTimeMap'|translate|escape:'js'}");
- if(clickedMenuIsNotMap) {ldelim}
- $('.top_controls').show();
- {rdelim}
- {rdelim});
- $('.realTimeMap_overlay').css('top', '0px');
- $('.realTimeMap_datetime').css('top', '20px');
- {rdelim}
+ {* If the map is loaded from the menu, do a few tweaks to clean up the display *}
+ {if $mapIsStandaloneNotWidget}
+ function initStandaloneMap() {ldelim}
+ $('.top_controls').hide();
+ $('ul.nav').on('piwikSwitchPage', function (event, item) {ldelim}
+ var clickedMenuIsNotMap = ($(item).text() != "{'UserCountryMap_RealTimeMap'|translate|escape:'js'}");
+ if (clickedMenuIsNotMap) {ldelim}
+ $('.top_controls').show();
+ {rdelim
+ }
+ {rdelim
+ });
+ $('.realTimeMap_overlay').css('top', '0px');
+ $('.realTimeMap_datetime').css('top', '20px');
+ {rdelim
+ }
- initStandaloneMap();
-{/if}
+ initStandaloneMap();
+ {/if}
- {literal}
+ {literal}
var config = { metrics: {} };
-{/literal}
+ {/literal}
config.svgBasePath = "{$piwikUrl}plugins/UserCountryMap/svg/";
config.liveRefreshAfterMs = {$liveRefreshAfterMs};
@@ -52,24 +56,24 @@
var realtimeMap;
-{literal}
+ {literal}
if ($('#dashboardWidgetsArea').length) {
// dashboard mode
var $widgetContent = $('#RealTimeMap').parents('.widgetContent');
- $widgetContent.on('widget:create', function(evt, widget) {
+ $widgetContent.on('widget:create',function (evt, widget) {
realtimeMap = new UserCountryMap.RealtimeMap(config, widget);
- }).on('widget:maximise', function(evt) {
- realtimeMap.resize();
- }).on('widget:minimise', function(evt) {
- realtimeMap.resize();
- }).on('widget:destroy', function(evt) {
- realtimeMap.destroy();
- });
+ }).on('widget:maximise',function (evt) {
+ realtimeMap.resize();
+ }).on('widget:minimise',function (evt) {
+ realtimeMap.resize();
+ }).on('widget:destroy', function (evt) {
+ realtimeMap.destroy();
+ });
} else {
// stand-alone mode
realtimeMap = new UserCountryMap.RealtimeMap(config);
}
-{/literal}
+ {/literal}
</script>