Issue #13 Due time handling (local time / UTC)

This commit is contained in:
Simon Holywell
2012-04-13 14:07:18 +01:00
parent cf2f9d419e
commit 3e78376be3
8 changed files with 50 additions and 22 deletions

View File

@@ -129,7 +129,6 @@
{/block}
{block javascript}
<script type="text/javascript">
var default_time = '{$default_time}';
document.getElementById('id_summary').focus();{literal}
$(document).ready(function(){
$("#id_due_dtime").datepicker({
@@ -137,10 +136,7 @@ $(document).ready(function(){
changeMonth: true,
yearRange: '-0:+5',
constrainInput: false,
dateFormat: 'yy-mm-dd',
onSelect: function(dateText, inst) {
this.value = dateText + ' ' + default_time;
}
dateFormat: 'yy-mm-dd'
});
$('#due_dtime_wrapper').mouseover(function(){
$('#due_dtime_more_shortcuts').show();