diff gpp/gcalendar/static/js/gcalendar.js @ 312:88b2b9cb8c1f

Fixing #142; cut over to the django.contrib.staticfiles app.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Jan 2011 02:56:10 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/gcalendar/static/js/gcalendar.js	Thu Jan 27 02:56:10 2011 +0000
@@ -0,0 +1,33 @@
+$(document).ready(function() {
+    $('#id_start_date').datepicker({constrainInput: true, 
+       dateFormat: 'mm/dd/yy',
+       onClose: function () {
+         var end = $('#id_end_date');
+         if (this.value > end.val())
+         {
+            end.val(this.value);
+         }
+       }
+       });
+    $('#id_end_date').datepicker({constrainInput: true,
+       dateFormat: 'mm/dd/yy',
+       onClose: function () {
+         var start = $('#id_start_date');
+         if (this.value < start.val())
+         {
+            start.val(this.value);
+         }
+       }
+       });
+    if ($('#id_all_day:checked').length)
+    {
+       $('#id_start_time').hide();
+       $('#id_end_time').hide();
+       $('#id_tz_stuff').hide();
+    }
+    $('#id_all_day').click(function () {
+       $('#id_start_time').toggle();
+       $('#id_end_time').toggle();
+       $('#id_tz_stuff').toggle();
+       });
+});