Contacta con tu responsable
gitea/worker-time-control/pipeline/head This commit looks good
Details
gitea/worker-time-control/pipeline/head This commit looks good
Details
This commit is contained in:
parent
66eca925d3
commit
a4ad06c15d
|
@ -4,5 +4,5 @@ var process = {
|
||||||
};
|
};
|
||||||
|
|
||||||
var config = {
|
var config = {
|
||||||
urlBase: 'http://localhost:8080'
|
urlBase: 'http://localhost:9090'
|
||||||
};
|
};
|
||||||
|
|
|
@ -187,6 +187,9 @@ h3{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
.inMiddle{
|
||||||
|
background: #d27502;
|
||||||
|
}
|
||||||
|
|
||||||
.out,.outMiddle{
|
.out,.outMiddle{
|
||||||
display: inline;
|
display: inline;
|
||||||
|
@ -200,6 +203,10 @@ h3{
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.outMiddle{
|
||||||
|
background: #d27502;
|
||||||
|
}
|
||||||
|
|
||||||
header{
|
header{
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 20px 20px 0px 20px;
|
padding: 20px 20px 0px 20px;
|
||||||
|
|
|
@ -72,8 +72,12 @@ function setView() {
|
||||||
$(".out").hide();
|
$(".out").hide();
|
||||||
$("#txtNombre").text(userData["name"] + " " + userData["surname"]);
|
$("#txtNombre").text(userData["name"] + " " + userData["surname"]);
|
||||||
getInfo();
|
getInfo();
|
||||||
$("." + userData["button1"]).show();
|
if(userData["button1"] === null && userData["button2"] === null ) {
|
||||||
$("." + userData["button2"]).show();
|
printError ("Contacta con tu resposable")
|
||||||
|
} else {
|
||||||
|
$("." + userData["button1"]).show();
|
||||||
|
$("." + userData["button2"]).show();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getInfo() {
|
function getInfo() {
|
||||||
|
|
Loading…
Reference in New Issue