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

make sure to reload page when requesting a new page

parent 5329a8c9
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -315,6 +315,15 @@ var broadcast = { ...@@ -315,6 +315,15 @@ var broadcast = {
} }
} }
var updatedUrl = new RegExp('&updated=([0-9]+)');
var updatedCounter = updatedUrl.exec(currentSearchStr);
if (!updatedCounter) {
currentSearchStr += '&updated=1';
} else {
updatedCounter = 1 + parseInt(updatedCounter[1]);
currentSearchStr = currentSearchStr.replace(new RegExp('(&updated=[0-9]+)'), '&updated=' + updatedCounter);
}
if (strHash && currentHashStr.length != 0) { if (strHash && currentHashStr.length != 0) {
var params_hash_vals = strHash.split("&"); var params_hash_vals = strHash.split("&");
for (var i = 0; i < params_hash_vals.length; i++) { for (var i = 0; i < params_hash_vals.length; i++) {
......
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