Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
S
stats-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
stats-facil
Validations
ba02b99b
Valider
ba02b99b
rédigé
9 years ago
par
Thomas Steur
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
fixes #8988 make sure apply button works when no period is changed
parent
3d166254
Aucune branche associée trouvée
Branches contenant la validation
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
1
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
1 fichier modifié
plugins/CoreHome/javascripts/calendar.js
+25
-9
25 ajouts, 9 suppressions
plugins/CoreHome/javascripts/calendar.js
avec
25 ajouts
et
9 suppressions
plugins/CoreHome/javascripts/calendar.js
+
25
−
9
Voir le fichier @
ba02b99b
...
@@ -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
));
changePeriodOnClick
IfPeriodChanged
(
$
(
'
#
'
+
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
));
changePeriodOnClick
IfPeriodChanged
(
$
(
'
#
'
+
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
'
))
{
changePeriod
OnClick
(
$selectedPeriod
);
changePeriod
WithPageReload
(
$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
(
changePeriodOnClick
IfPeriodChanged
(
$
(
e
.
target
)))
{
return
true
;
return
true
;
}
}
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter