On Tuesday, January 28, 2014 3:52:54 PM UTC-8, RjOllos wrote:
>
> On Monday, January 27, 2014 7:12:42 PM UTC-8, Dave Huang wrote:
>>
>>  On 2014-01-27 7:01 PM, RjOllos wrote:
>>  
>> I test and found it was working okay after making the corrections now 
>> documented here: 
>>
>> http://trac-hacks.org/wiki/TestManagerForTracPlugin?action=diff&version=111<http://trac-hacks.org/wiki/TestManagerForTracPlugin?sfp_email=&sfph_mail=&action=diff&version=111&old_version=110&sfp_email=&sfph_mail=>
>>  
>>  Do you see any JavaScript errors in the browser console? Are json2.js 
>> and tt_newticket.js found in the page source?
>>  
>>
>> No JS errors in the console. Both json2.js and tt_newticket.js are in the 
>> page source; json2.js in the <head>, tt_newticket.js down at the very end 
>> of the page, right before </body>. When I load the page, it does make an 
>> AJAX request for https://mysite/trac/tt/query?... , and it gets a 
>> response back containing the various ticket templates.
>>
>
> Do you have any other plugins installed that might be conflicting?
>
> After the page loads, can you execute the following from the console and 
> have the description populated?
>
> jQuery("body").tt_newticket(); 
>


You might want to try the following replacement in tt_newticket.js:

$(document).ready(function() {
    $("body").tt_newticket();
});

->

jQuery(document).ready(function($) {
    $("body").tt_newticket();
}); 

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to