mirror of
https://github.com/redmine/redmine.git
synced 2025-11-13 08:46:01 +01:00
Merged datepicker.js into application.js.
git-svn-id: http://svn.redmine.org/redmine/trunk@13752 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -539,6 +539,23 @@ function observeSearchfield(fieldId, targetId, url) {
|
||||
});
|
||||
}
|
||||
|
||||
function beforeShowDatePicker(input, inst) {
|
||||
var default_date = null;
|
||||
switch ($(input).attr("id")) {
|
||||
case "issue_start_date" :
|
||||
if ($("#issue_due_date").size() > 0) {
|
||||
default_date = $("#issue_due_date").val();
|
||||
}
|
||||
break;
|
||||
case "issue_due_date" :
|
||||
if ($("#issue_start_date").size() > 0) {
|
||||
default_date = $("#issue_start_date").val();
|
||||
}
|
||||
break;
|
||||
}
|
||||
$(input).datepicker("option", "defaultDate", default_date);
|
||||
}
|
||||
|
||||
function initMyPageSortable(list, url) {
|
||||
$('#list-'+list).sortable({
|
||||
connectWith: '.block-receiver',
|
||||
|
||||
Reference in New Issue
Block a user