songtianlun
81843f0c08
- Deleted the `add_jquery.js` file as jQuery is no longer needed. - Removed references to Bootstrap from the Gemfile and package.json. - Updated the application layout to reflect the removal of Bootstrap styles. - Adjusted the paginator HTML to use a class that aligns with the new styling. These changes streamline the asset pipeline by eliminating unused libraries, which can improve load times and reduce potential security vulnerabilities. The application now relies on alternative styling and JavaScript solutions.
16 lines
519 B
Plaintext
16 lines
519 B
Plaintext
<%= paginator.render do -%>
|
|
<div class="join pagination">
|
|
<%= first_page_tag unless current_page.first? %>
|
|
<%= prev_page_tag unless current_page.first? %>
|
|
<% each_page do |page| -%>
|
|
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
|
|
<%= page_tag page %>
|
|
<% elsif !page.was_truncated? -%>
|
|
<%= gap_tag %>
|
|
<% end -%>
|
|
<% end -%>
|
|
<%= next_page_tag unless current_page.last? %>
|
|
<%= last_page_tag unless current_page.last? %>
|
|
</div>
|
|
<% end -%>
|