Détection du fast-forward

This commit is contained in:
Michel Roux 2013-10-17 10:03:29 +02:00
parent ad0aa11ace
commit 1858205aff
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function callRequest(action, section, message) {
var splitLabel = xhr.responseText.split("\n").reverse();
label.classList.remove('label-warning');
if (splitLabel[1] !== 'nothing to commit (working directory clean)') {
if (splitLabel[1] !== 'nothing to commit (working directory clean)' || xhr.responseText.match(/by [0-9]* commits/)) {
label.classList.add('label-important');
label.innerHTML = 'Update needed';
} else {