commit/galaxy-central: jgoecks: Readd add/remove buttons' HTML element class names that was omitted due to a poor merge of pull request #24.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/666d744054de/ changeset: 666d744054de user: jgoecks date: 2013-01-18 17:59:11 summary: Readd add/remove buttons' HTML element class names that was omitted due to a poor merge of pull request #24. affected #: 1 file diff -r a0db2696ba21ff636d3fd75699fe995c0e8c2262 -r 666d744054ded20d79e3d2c6eb65012455de96b5 templates/tool_form.mako --- a/templates/tool_form.mako +++ b/templates/tool_form.mako @@ -151,7 +151,7 @@ <div class="form-title-row"><strong>${input.title} ${i + 1}</strong></div> ${do_inputs( input.inputs, repeat_state[i], rep_errors, prefix + input.name + "_" + str(index) + "|", other_values )} %if input.min < num_repeats: - <div class="form-row"><input type="submit" name="${prefix}${input.name}_${index}_remove" value="Remove ${input.title} ${i+1}"></div> + <div class="form-row"><input type="submit" class="btn" name="${prefix}${input.name}_${index}_remove" value="Remove ${input.title} ${i+1}"></div> %endif </div> %if rep_errors.has_key( '__index__' ): @@ -159,7 +159,7 @@ %endif %endfor %if input.max > num_repeats: - <div class="form-row"><input type="submit" name="${prefix}${input.name}_add" value="Add new ${input.title}"></div> + <div class="form-row"><input type="submit" class="btn" name="${prefix}${input.name}_add" value="Add new ${input.title}"></div> %endif </div> %elif input.type == "conditional": 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