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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-10-27 21:05:09 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-10-27 21:05:09 +0300
commit73fdfdf1f4479086a4b1429c74aa88805fc4d7fa (patch)
treeecd2935d5e588d4d155e73e807ba273e5d94e01f /plugins/CoreHome/templates/sites_selection.tpl
parent91af78803d8d61e169badd28a6f7370b90fba615 (diff)
- fixing languagesmanager
- hiding site selection first, then display it
Diffstat (limited to 'plugins/CoreHome/templates/sites_selection.tpl')
-rw-r--r--plugins/CoreHome/templates/sites_selection.tpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/CoreHome/templates/sites_selection.tpl b/plugins/CoreHome/templates/sites_selection.tpl
index 753ed724f4..b2ea90af57 100644
--- a/plugins/CoreHome/templates/sites_selection.tpl
+++ b/plugins/CoreHome/templates/sites_selection.tpl
@@ -1,4 +1,4 @@
-<span id="sitesSelectionWrapper" >
+<span id="sitesSelectionWrapper" style="display:none;" >
<span id="selectedSiteName" style="display:none">{$siteName}</span>
<span id="sitesSelection" style="position:absolute">Site
<form action="{url idSite=null}" method="get">
@@ -20,6 +20,7 @@
{
extraPadding = 21;
}
+ $("#sitesSelectionWrapper").show();
var widthSitesSelection = $("#selectedSiteName").width() + 4 + extraPadding;
$("#sitesSelectionWrapper").css('padding-right', widthSitesSelection);
$("#sitesSelection").fdd2div({CssClassName:"formDiv"});