Skip to content
Extraits de code Groupes Projets
Valider a04d8c8d rédigé par sgiehl's avatar sgiehl
Parcourir les fichiers

show loading icon in siteselection while switching site

git-svn-id: http://dev.piwik.org/svn/trunk@5377 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent d54c466c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -11,6 +11,16 @@ $('.but').bind('click', function(e)
$('#websiteSearch').autocomplete('search', $('#websiteSearch').val() + '%%%');
return false;
});
function switchSite(id, name)
{
$("#sitesSelectionSearch .custom_select_block").toggleClass("custom_select_block_show");
$('.custom_select_main_link').text(name);
$('.custom_select_main_link').addClass('custom_select_loading');
broadcast.propagateNewPage('idSite='+id );
return false;
}
$(function() {
if($('#websiteSearch').length == 0)
{
......@@ -35,13 +45,12 @@ $(function() {
select: function(event, ui) {
if(piwik.idSite == ui.item.id)
{
hide();
$("#sitesSelectionSearch .custom_select_block").toggleClass("custom_select_block_show");
}
else
{
if(ui.item.id > 0) {
broadcast.propagateNewPage('idSite='+ui.item.id );
switchSite(ui.item.id, ui.item.name);
} else {
reset();
}
......
......@@ -8,7 +8,7 @@
<div id="custom_select_container">
<ul class="custom_select_ul_list" >
{foreach from=$sites item=info}
<li {if $idSite==$info.idsite} style="display: none"{/if}><a href="index.php?module=CoreHome&amp;action=index&amp;idSite={$info.idsite}&amp;period={$period}&amp;date={$rawDate}" siteid="{$info.idsite}" onclick="broadcast.propagateNewPage( 'idSite={$info.idsite}');">{$info.name}</a></li>
<li {if $idSite==$info.idsite} style="display: none"{/if}><a href="index.php?module=CoreHome&amp;action=index&amp;idSite={$info.idsite}&amp;period={$period}&amp;date={$rawDate}" siteid="{$info.idsite}" onclick="switchSite({$info.idsite}, $(this).text());">{$info.name}</a></li>
{/foreach}
</ul>
</div>
......
......@@ -265,7 +265,7 @@ a {
}
.sites_autocomplete .custom_select_loading{
background: url(images/loading-blue.gif) no-repeat right 0;
background: url(images/loading-blue.gif) no-repeat right 3px;
}
.sites_autocomplete .custom_select_ul_list{
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter