Sha256: 7fd4ebcd9cfdd8b8e4b2d1108e887a790990d3ada40a16a9fc21e7f0d700ffb3
Contents?: true
Size: 1.02 KB
Versions: 28
Compression:
Stored size: 1.02 KB
Contents
<div class="button-group paginator"> <% if @enableAdditionalButtons: %> <a href="#" class="button <%= "disabled" if @currentPage == @firstPage %> previous"><div class="iux-default-icon-arrow-left no-space"></div></a> <% end %> <a href="#" class="button <%= "selected" if @currentPage == @firstPage %> page"><%= @firstPage %></a> <% if @pageButtons?: %> <% @pageButtons[0] = '...' if (@currentPage - 3) > @firstPage %> <% @pageButtons[@pageButtons.length - 1] = '...' if (@currentPage + 3) < @lastPage %> <% for page in @pageButtons: %> <a href="#" class="button <%= "selected" if @currentPage == page %> <%= "disabled" if page == '...' %> page"><%= page %></a> <% end %> <% end %> <% if @lastPage > 1: %> <a href="#" class="button <%= "selected" if @currentPage == @lastPage %> page"><%= @lastPage %></a> <% end %> <% if @enableAdditionalButtons: %> <a href="#" class="button <%= "disabled" if @currentPage == @lastPage %> next"><div class="iux-default-icon-arrow-right no-space"></div></a> <% end %> </div>
Version data entries
28 entries across 28 versions & 1 rubygems