Trivial changes to configurable bookbag paging
authorDan Wells <dbw2@calvin.edu>
Fri, 13 Sep 2013 20:30:55 +0000 (16:30 -0400)
committerDan Wells <dbw2@calvin.edu>
Fri, 13 Sep 2013 20:30:55 +0000 (16:30 -0400)
1) use class for highlight styling of current page
2) correct minor logic error ('<=' should be '<')

Signed-off-by: Dan Wells <dbw2@calvin.edu>
Open-ILS/src/templates/opac/myopac/lists.tt2

index 22b3bd9..392a528 100644 (file)
                     offset => (offset - limit)
                 }) %]'>[% ((offset - limit) / limit) + 1 %]</a>
             [%- END; -%]
-            <span style="color:red;" >[% (offset / limit) + 1 %]</span>
-            [%- IF (offset + limit) <= ctx.bookbag_count -%]
+            <span class="bookbag-paginator-selected" >[% (offset / limit) + 1 %]</span>
+            [%- IF (offset + limit) < ctx.bookbag_count -%]
                 <a href='[% mkurl(ctx.opac_root _ '/myopac/lists', {
                     offset => (offset + limit)
                 }) %]'>[% ((offset + limit) / limit) + 1 %]</a>
             [%- END; -%]
-            [%- IF (offset + (limit * 2)) <= ctx.bookbag_count -%]
+            [%- IF (offset + (limit * 2)) < ctx.bookbag_count -%]
                 <a href='[% mkurl(ctx.opac_root _ '/myopac/lists', {
                     offset => (offset + (limit * 2))
                 }) %]'>[% ((offset + (limit * 2)) / limit) + 1 %]</a>
             [%- END; -%]
-            [%- IF (offset + (limit * 3)) <= ctx.bookbag_count -%]
+            [%- IF (offset + (limit * 3)) < ctx.bookbag_count -%]
                 <a href='[% mkurl(ctx.opac_root _ '/myopac/lists', {
                     offset => (offset + (limit * 3))
                 }) %]'>[% ((offset + (limit * 3)) / limit) + 1 %]</a>