summaryrefslogtreecommitdiffstats
path: root/application/views/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts')
-rw-r--r--application/views/scripts/event/index.phtml6
1 files changed, 5 insertions, 1 deletions
diff --git a/application/views/scripts/event/index.phtml b/application/views/scripts/event/index.phtml
index 473bbc5..b71011e 100644
--- a/application/views/scripts/event/index.phtml
+++ b/application/views/scripts/event/index.phtml
@@ -112,7 +112,11 @@ var lastview;
}
});
return false;
+
/*
+ *
+ * TO DO: Selection eines Events per Klick sichtbar machen
+ *
if(event.color == 'red') {
event.color = 'rgb(112,0,0)';
}else if(event.color == 'green') {
@@ -129,7 +133,7 @@ var lastview;
if (!confirm("Are you sure to add an Event from " + startDate + " to " + endDate + " ?")) {
$('#calendar').fullCalendar( 'unselect' );
}else {
- self.location="/event/add/evstart/" + startDate + "/evend/" + endDate;
+ self.location="/event/add/start/" + startDate + "/end/" + endDate;
}
},