Modify ↓
Opened 15 years ago
Closed 12 years ago
#6353 closed defect (wontfix)
jquery 1.3.2 compat for ticketdelete.js
Reported by: | Christian Boos | Owned by: | Noah Kantrowitz |
---|---|---|---|
Priority: | normal | Component: | TicketDeletePlugin |
Severity: | normal | Keywords: | jquery132 |
Cc: | jhammel | Trac Release: | 0.12 |
Description
After the upgrade of t.e.o to 0.12dev, we noticed a javascript error on ticket pages, due to ticketdelete.js' use of deprecated [@attr...]
selectors, no longer supported with jquery 1.3 which comes with Trac trunk (1.3.2 currently).
-
ticketdelete/htdocs/ticketdelete.js
8 8 $('#ticket table.properties').after('<div class="description"><h3><span class="inlinebuttons">'+delete_link+'</span> </h3></div>'); 9 9 } 10 10 $('#changelog .inlinebuttons').each(function() { 11 var comment = $('input[ @name=replyto]', this)[0];11 var comment = $('input[name=replyto]', this)[0]; 12 12 if (comment) { 13 13 comment = comment.value; 14 14 $(this).append('<a href="../admin/ticket/comments/'+ticket+'?cnum='+comment+'">Delete</a>');
Attachments (0)
Change History (2)
comment:1 Changed 15 years ago by
Cc: | jhammel added; anonymous removed |
---|
comment:2 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Closing since Trac 0.12 has tracopt.ticket.deleter
and this plugin is therefore deprecated.
Note: See
TracTickets for help on using
tickets.
(Remy told me jhammel took over maintenance of this plugin, if this is correct the default owner should be fixed)