Skip to content

Commit 52074f3

Browse files
committed
removed unnecessary nbsp
1 parent 2dd0539 commit 52074f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/resque/server/views/next_more.erb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<% if start - 20 >= 0 || start + 20 <= size %>
22
<p class='pagination'>
33
<% if start - 20 >= 0 %>
4-
&nbsp;<a href="<%= current_page %>?start=0" class='less separated-right'>&laquo;&laquo;</a>&nbsp;
4+
<a href="<%= current_page %>?start=0" class='less separated-right'>&laquo;&laquo;</a>
55
<% end %>
66
<% if start - 20 >= 0 %>
7-
&nbsp;<a href="<%= current_page %>?start=<%= start - 20 %>" class='less'>&laquo; less</a>&nbsp;
7+
<a href="<%= current_page %>?start=<%= start - 20 %>" class='less'>&laquo; less</a>
88
<% end %>
99
<% if start + 20 <= size %>
1010
<% page = (size % 20 == 0 ? (size-20) : ((size) - (size % 20)) )%>
11-
&nbsp;<a href="<%= current_page %>?start=<%= page %>" class='more separated-left'>&raquo;&raquo;</a>
11+
<a href="<%= current_page %>?start=<%= page %>" class='more separated-left'>&raquo;&raquo;</a>
1212
<% end %>
1313
<% if start + 20 <= size %>
14-
&nbsp;<a href="<%= current_page %>?start=<%= start + 20 %>" class='more'>more &raquo;</a>&nbsp;
14+
<a href="<%= current_page %>?start=<%= start + 20 %>" class='more'>more &raquo;</a>
1515
<% end %>
1616
</p>
1717
<%end%>

0 commit comments

Comments
 (0)