Skip to content
Extraits de code Groupes Projets
Valider ba02b99b rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

fixes #8988 make sure apply button works when no period is changed

parent 3d166254
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -354,7 +354,24 @@ ...@@ -354,7 +354,24 @@
}); });
var reloading = false; var reloading = false;
var changePeriodOnClick = function (periodInput) {
var changePeriodWithPageReload = function (periodInput) {
var url = periodInput.val(),
period = broadcast.getValueFromUrl('period', url);
// if clicking on the selected period, change the period but not the date
if (period != 'range' && !reloading) {
// only reload if current period is different from selected
reloading = true;
selectedPeriod = period;
updateDate(piwik.currentDateString);
return true;
}
return false;
};
var changePeriodOnClickIfPeriodChanged = function (periodInput) {
if (reloading) // if a click event resulted in reloading, don't reload again if (reloading) // if a click event resulted in reloading, don't reload again
{ {
return; return;
...@@ -366,11 +383,10 @@ ...@@ -366,11 +383,10 @@
// if clicking on the selected period, change the period but not the date // if clicking on the selected period, change the period but not the date
if (selectedPeriod == period && selectedPeriod != 'range') { if (selectedPeriod == period && selectedPeriod != 'range') {
// only reload if current period is different from selected // only reload if current period is different from selected
if (piwik.period != selectedPeriod && !reloading) { if (piwik.period != selectedPeriod) {
reloading = true; return changePeriodWithPageReload(periodInput);
selectedPeriod = period;
updateDate(piwik.currentDateString);
} }
return true; return true;
} }
...@@ -379,12 +395,12 @@ ...@@ -379,12 +395,12 @@
$("#otherPeriods").find("label,input").on('dblclick', function (e) { $("#otherPeriods").find("label,input").on('dblclick', function (e) {
var id = $(e.target).attr('for'); var id = $(e.target).attr('for');
changePeriodOnClick($('#' + id)); changePeriodOnClickIfPeriodChanged($('#' + id));
}); });
$("#otherPeriods").find("label,input").on('dblclick', function (e) { $("#otherPeriods").find("label,input").on('dblclick', function (e) {
var id = $(e.target).attr('for'); var id = $(e.target).attr('for');
changePeriodOnClick($('#' + id)); changePeriodOnClickIfPeriodChanged($('#' + id));
}); });
// Apply date range button will reload the page with the selected range // Apply date range button will reload the page with the selected range
...@@ -393,7 +409,7 @@ ...@@ -393,7 +409,7 @@
var $selectedPeriod = $('#periodMore [name=period]:checked'); var $selectedPeriod = $('#periodMore [name=period]:checked');
if (!$selectedPeriod.is('#period_id_range')) { if (!$selectedPeriod.is('#period_id_range')) {
changePeriodOnClick($selectedPeriod); changePeriodWithPageReload($selectedPeriod);
return true; return true;
} }
...@@ -422,7 +438,7 @@ ...@@ -422,7 +438,7 @@
period = broadcast.getValueFromUrl('period', request_URL), period = broadcast.getValueFromUrl('period', request_URL),
lastPeriod = selectedPeriod; lastPeriod = selectedPeriod;
if (changePeriodOnClick($(e.target))) { if (changePeriodOnClickIfPeriodChanged($(e.target))) {
return true; return true;
} }
......
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