diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-05-27 15:07:58 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-05-27 15:07:58 (GMT) |
commit | d8933e35a6bfbba12a40d100db56700fd381a968 (patch) | |
tree | a8cd9899ebf0329e260aa9c8798074bcec26f289 /nop/site_media | |
parent | 302a5db65edffda5d366c3077c6690d06e2edd49 (diff) |
integration of nowplaying into plone
Diffstat (limited to 'nop/site_media')
-rw-r--r-- | nop/site_media/nowplaying_form.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nop/site_media/nowplaying_form.js b/nop/site_media/nowplaying_form.js new file mode 100644 index 0000000..86656d5 --- /dev/null +++ b/nop/site_media/nowplaying_form.js @@ -0,0 +1,12 @@ +$(document).ready(function() { + $("#nop_date").dateinput({ + format: 'yyyy-mm-dd', + firstDay: 1 + }); + $("#nop_time").AnyTime_picker({ + format: "%H:%i", + labelTitle: "Zeit", + labelHour: "Stunde", + labelMinute: "Minute" + }); +}); |