What about add a function in trac for checking if user is submitting a
ticket about jQuery UI?
like:
$("form").submit(function(e){
if (/draggables|dialog|datepicker|.../i.test($("textarea").val()) ) {
if (confirm("You are submitting a UI-related ticket, and jQuery UI
has its own tickets system....")) {
...
} else {
e.preventDefault();
}
}
});
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---