Safari history back #2

Merged
carlosap merged 2 commits from test into master 2021-10-26 09:32:56 +00:00
2 changed files with 9 additions and 1 deletions

8
Jenkinsfile vendored
View File

@ -13,6 +13,10 @@ pipeline {
}
}
stage('Build') {
when { anyOf {
branch 'test'
branch 'master'
}}
environment {
CREDENTIALS = credentials('docker-registry')
}
@ -21,6 +25,10 @@ pipeline {
}
}
stage('Deploy') {
when { anyOf {
branch 'test'
branch 'master'
}}
environment {
DOCKER_HOST = "${env.SWARM_HOST}"
}

View File

@ -173,6 +173,6 @@ function cerrar(){
$(".loading").fadeIn(200);
localStorage.removeItem("userData");
setTimeout(function () {
window.history.back();
window.location='index.html';
}, 200);
}