Skip to content
Extraits de code Groupes Projets
Valider 0cd0cf9a rédigé par benakamoorthi's avatar benakamoorthi
Parcourir les fichiers

Refs #1823, fade 'Done' in & out after successfully switched location providers.

git-svn-id: http://dev.piwik.org/svn/trunk@7181 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent e216cc7e
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -10,7 +10,9 @@ $(document).ready(function() {
$('.current-location-provider').change(function() {
if (!$(this).is(':checked')) return; // only handle radio buttons that get checked
var loading = $('.loadingPiwik', $(this).parent());
var parent = $(this).parent(),
loading = $('.loadingPiwik', parent),
ajaxSuccess = $('.ajaxSuccess', parent);
loading.show();
$.ajax({
......@@ -26,6 +28,11 @@ $(document).ready(function() {
error: piwikHelper.ajaxHandleError, // Callback when the request fails
success: function() {
loading.hide();
ajaxSuccess.fadeIn(1000, function() {
setTimeout(function() {
ajaxSuccess.fadeOut(1000);
}, 500);
});
}
});
});
......
......@@ -21,6 +21,7 @@
<input class="current-location-provider" name="current-location-provider" value="{$id}" type="radio" {if $currentProviderId eq $id}checked="checked"{/if} id="provider_input_{$id}" style="cursor:pointer" {if $provider.status neq 1}disabled="disabled"{/if}/>
<label for="provider_input_{$id}" style="font-size:1.2em">{$provider.title|translate}</label><br/>
<span class='loadingPiwik' style='display:none'><img src='./themes/default/images/loading-blue.gif' /></span>
<span class="ajaxSuccess" style='display:none'>{'General_Done'|translate}</span>
</p>
<p style="margin-left:.5em">
<strong><em>
......
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