|
Lines 1542-1548
Link Here
|
| 1542 |
var current_input_id = $(current_column).children("input").first().attr("id"); |
1542 |
var current_input_id = $(current_column).children("input").first().attr("id"); |
| 1543 |
if (current_input_id === "note") { |
1543 |
if (current_input_id === "note") { |
| 1544 |
// specific processing for the Note column |
1544 |
// specific processing for the Note column |
| 1545 |
var note = $(this).find("a[id='viewnote']").data("content"); |
1545 |
var note = $(this).find("a[id='viewnote']").data("bsContent"); |
| 1546 |
$(current_column).find("input[type='text']").val(note); |
1546 |
$(current_column).find("input[type='text']").val(note); |
| 1547 |
} else if (current_input_id === "hardduedate") { |
1547 |
} else if (current_input_id === "hardduedate") { |
| 1548 |
// specific processing for Hard due date |
1548 |
// specific processing for Hard due date |
| 1549 |
- |
|
|