app/soc/content/js/datetimepicker-090825.js
author Mario Ferraro <fadinlight@gmail.com>
Mon, 07 Sep 2009 15:20:49 +0200
changeset 2873 4fb030d43575
parent 2801 0ee67cc9bd20
permissions -rw-r--r--
Scripts to run Shrinksafe during build. The function that runs shrinksafe over JS files has been put to a separate shell file to be run standalone without building if needed.

jQuery(
  function () {
    jQuery('.datetime-pick').datetimepicker();
    jQuery('.date-pick').datetimepicker({
      'pickDateOnly': true,
      'defaultDate': new Date('01/01/1974'),
      'timeFormat': '',
      'yearRange': '1900:2008'
    });
  }
);