id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
10858	Template isn't loaded for NewTicket in Trac 1.0	rochi	richard	Depends on Trac 1.0.x\r\n\r\nIf you create a new ticket in Trac 1.0 tickettemplate doesn't load the template.\r\nYou have first to switch the ticket type to throw a change event.\r\n\r\nThe problem is located in line 338 in ''tt_newticket.js'':\r\n{{{\r\n#!js\r\nif ($("#ticket.ticketdraft").length && isLoad) {\r\n                // reset isLoad\r\n                isLoad = false;\r\n                return;\r\n            }\r\n}}}\r\n\r\nyou have to change it to:\r\n{{{\r\n#!js\r\nif ($("#ticket.ticketdraft").css('display') != 'none' && isLoad) {\r\n                // reset isLoad\r\n                isLoad = false;\r\n                return;\r\n            }\r\n}}}\r\n\r\nMaybe you have to modify my patch to support Trac 0.12 and Trac 1.0	defect	new	normal	TracTicketTemplatePlugin	normal				1.0
