commit/galaxy-central: dan: DrillDown parameter now uses slideUp/Down.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/cbaeb519256d/ changeset: cbaeb519256d user: dan date: 2012-04-05 03:12:31 summary: DrillDown parameter now uses slideUp/Down. affected #: 1 file diff -r 9c80a2995cc9ca4248d4673d553461d739142371 -r cbaeb519256d71124294ecc4351c031670a72d40 templates/tool_form.mako --- a/templates/tool_form.mako +++ b/templates/tool_form.mako @@ -43,14 +43,14 @@ } show_hide_click_elt.click( function() { if ( show_hide_click_elt.hasClass("toggle") ){ + show_hide_click_elt.addClass("toggle-expand"); show_hide_click_elt.removeClass("toggle"); - show_hide_click_elt.addClass("toggle-expand"); - show_hide_elt.hide() + show_hide_elt.slideUp( 'fast' ); } else { show_hide_click_elt.addClass("toggle"); show_hide_click_elt.removeClass("toggle-expand"); - show_hide_elt.show(); + show_hide_elt.slideDown( 'fast' ); } }); }); 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.
participants (1)
-
Bitbucket