Showing
3 changed files
with
9 additions
and
4 deletions
| ... | ... | @@ -10,6 +10,13 @@ |
| 10 | 10 | </a> |
| 11 | 11 | </div> |
| 12 | 12 | <div class="col-md-2"> |
| 13 | + <%= link_to '#', class: 'sort-repeat-row sort-up' do %> | |
| 14 | + <i class="fa fa-arrow-up"></i> | |
| 15 | + <% end %> | |
| 16 | + <%= link_to '#', class: 'sort-repeat-row sort-down' do %> | |
| 17 | + <i class="fa fa-arrow-down"></i> | |
| 18 | + <% end %> | |
| 19 | + | |
| 13 | 20 | <%= link_to 'x', url_for(:controller => 'admin/page_contents', :action => 'delete_item', id: @obj.id, row_item: @row_item), class: 'delete-repeat-row' %> |
| 14 | 21 | </div> |
| 15 | 22 | </div> | ... | ... |
| ... | ... | @@ -89,9 +89,7 @@ |
| 89 | 89 | <%= link_to '#', class: 'sort-repeat-row sort-down' do %> |
| 90 | 90 | <i class="fa fa-arrow-down"></i> |
| 91 | 91 | <% end %> |
| 92 | - <%= link_to url_for(:controller => 'admin/page_contents', :action => 'delete_item', id: @obj.id, row_item: index), class: 'delete-repeat-row' do %> | |
| 93 | - <i class="fa fa-close"></i> | |
| 94 | - <% end %> | |
| 92 | + <%= link_to 'x', url_for(:controller => 'admin/page_contents', :action => 'delete_item', id: @obj.id, row_item: index), class: 'delete-repeat-row' %> | |
| 95 | 93 | |
| 96 | 94 | </div> |
| 97 | 95 | </div> | ... | ... |