Mercurial > public > sg101
annotate media/js/bio.js @ 136:d203a4a986d2
Markitup preview function wasn't working correctly due to the user data being escaped before going into the markdown and smiley filters.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 27 Nov 2009 03:50:34 +0000 |
parents | c515b7401078 |
children | 7ea842744a57 |
rev | line source |
---|---|
gremmie@1 | 1 |
gremmie@1 | 2 $(document).ready(function() { |
gremmie@1 | 3 $('#id_birthday').datepicker({changeMonth: true, |
gremmie@1 | 4 changeYear: true, |
gremmie@1 | 5 dateFormat: 'yy-mm-dd', |
bgneal@77 | 6 defaultDate: '-30y', |
gremmie@1 | 7 minDate: new Date(1909, 0, 1), |
gremmie@1 | 8 maxDate: new Date(), |
gremmie@1 | 9 yearRange: '-100:+0'}); |
gremmie@1 | 10 }); |