fast fertig

This commit is contained in:
darthsandmann
2016-11-17 00:28:30 +01:00
parent d315cd1009
commit 50f239ad08
28 changed files with 553 additions and 71 deletions

View File

@ -11,10 +11,10 @@ function select(category, mode) {
}
else
{
if(mode == 0){
if(mode == 0) {
window.location.href = '/detail/?cat=' + category + '&id=' + id;
}
else {
if(mode == 1) {
var result = confirm("Sind Sie sicher, dass der Eintrag gelöscht werden soll?");
if(result) {
window.location.href = '/delete/?cat=' + category + '&id=' + id;
@ -24,6 +24,16 @@ function select(category, mode) {
return false;
}
}
if(mode == 2) {
var result = confirm("Sind Sie sicher, dass das Angebot angenommen werden soll?");
if(result) {
window.location.href = '/detailchoice/?id=' + id;
return true;
}
else {
return false;
}
}
}
}

View File

@ -188,4 +188,11 @@ body {
left: 250px;
width: 250px;
}
.clFormRow select {
position: absolute;
top: 0;
left: 250px;
width: 250px;
}
/* EOF */