summaryrefslogtreecommitdiffstats
path: root/application/views
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-08 14:36:39 +0200
committerBjörn Geiger2011-09-08 14:36:39 +0200
commit7fafa407f60327c5c67a007a906ee2bd91c0fb3a (patch)
treeac3473e43f1e788248abb2394941ddae769403c2 /application/views
parentweitere Korrektur (diff)
parentminor (diff)
downloadpoolctrl-7fafa407f60327c5c67a007a906ee2bd91c0fb3a.tar.gz
poolctrl-7fafa407f60327c5c67a007a906ee2bd91c0fb3a.tar.xz
poolctrl-7fafa407f60327c5c67a007a906ee2bd91c0fb3a.zip
Merge branch 'master' of git.openslx.org:lsfks/projekte/poolctrl
Diffstat (limited to 'application/views')
-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;
}
},