summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/index.html b/index.html
deleted file mode 100644
index e91fe95..0000000
--- a/index.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
- <head>
- <link rel='stylesheet' type='text/css' href='public/media/css/fullcalendar.css' />
- <script type='text/javascript' src='public/media/js/jquery-1.5.2.min.js'></script>
- <script type='text/javascript' src='public/media/js/jquery-ui-1.8.11.custom.min.js'></script>
- <script type='text/javascript' src='public/media/js/fullcalendar.min.js'></script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
- <title>Pool Control</title>
-
- <script type='text/javascript'>
-
- $(document).ready(function() {
-
- var date = new Date();
- var d = date.getDate();
- var m = date.getMonth();
- var y = date.getFullYear();
-
- $('#calendar').fullCalendar({
- header: {
- left: 'title',
- center: 'prev,next today',
- right: 'agendaWeek,agendaDay'
- },
-
-//TODO: disable overlaping events
-// disableDragging: false,
-// droppable: true,
-
- events: [
- {
- id: 99,
- title: 'Thist is my first Event!',
- start: new Date(y, m+1, d, 13, 15),
- end: new Date(y, m+1, d, 14, 45),
- allDay: false
- }
- ],
- });
- });
- </script>
- </head>
- <body>
- <div id='calendar' style='margin:3em 0;font-size:13px'></div>
- </body>
-</html>