1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/9d268e6d85f3/ changeset: 9d268e6d85f3 branches: user: dan date: 2011-06-07 16:46:52 summary: Fix for Select All / Unselect All functionality when more than one set of checkboxes is present on a page. affected #: 1 file (2 bytes) --- a/templates/tool_form.mako Tue Jun 07 09:04:55 2011 -0400 +++ b/templates/tool_form.mako Tue Jun 07 10:46:52 2011 -0400 @@ -51,7 +51,7 @@ }); function checkUncheckAll( name, check ) { - $("input[name=" + name + "][type='checkbox']").attr('checked', !!check); + $("input[name='" + name + "'][type='checkbox']").attr('checked', !!check); } // Inserts the Select All / Unselect All buttons for checkboxes Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.