Skip to content

Commit

Permalink
- fixed batching links to have a href="" so they are displayed as li…
Browse files Browse the repository at this point in the history
…nks in browsers
  • Loading branch information
Christian Theune committed Nov 3, 2006
1 parent 9c22118 commit ce42518
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/zc/table/batching.pt
Expand Up @@ -32,7 +32,8 @@
style="margin-right: 1ex"
tal:attributes="batch_change_name view/batch_change_name"
tal:condition="python: view.previous_batch_start is not None"
onclick="javascript:zc_table_batching_do_it(this, 'back');"
href=""
onclick="javascript:zc_table_batching_do_it(this, 'back'); return false"
class="zc-table-batching-pager-prev"
>&lt; <span i18n:translate="">Prev</span></a>
<span
Expand All @@ -43,7 +44,8 @@
<a
tal:attributes="batch_change_name view/batch_change_name"
tal:condition="python: view.next_batch_start is not None"
onclick="javascript:zc_table_batching_do_it(this, 'next')"
onclick="javascript:zc_table_batching_do_it(this, 'next'); return false"
href=""
class="zc-table-batching-pager-next"
><span i18n:translate="">Next</span> &gt;</a>
<span
Expand Down

0 comments on commit ce42518

Please sign in to comment.