Fixes issue #66; jQuery typo in ticket.html.

Thank you to jbeigel.
This commit is contained in:
Ross Poulton 2009-07-12 03:16:18 +00:00
parent 93723e9e7a
commit ec25a630d3

View File

@ -20,7 +20,7 @@
preset = $('#id_preset').val(); preset = $('#id_preset').val();
if (preset != '') { if (preset != '') {
$.get("{% url helpdesk_raw "preset" %}?id=" + preset, function(data) { $.get("{% url helpdesk_raw "preset" %}?id=" + preset, function(data) {
$("#commentBox").value(data) $("#commentBox").val(data)
}); });
} }
}); });