Skip to content

Commit f5419cc

Browse files
committed
Pagination.
1 parent a8745e6 commit f5419cc

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

js/view-many/many.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ return Backbone.View.extend({
323323
};
324324
h+='<li data-id="prev"'+
325325
((pId===1)?' class="disabled"':'')+
326-
'><a href="javascript:void(0)">&laquo;</a></li>';
326+
'><a href="javascript:void(0)">&lt;</a></li>';
327327
bPage(1);
328328
if(pId>4 && nbPages>6){
329329
if(pId===5){
@@ -343,7 +343,7 @@ return Backbone.View.extend({
343343
}
344344
h+='<li data-id="next"'+
345345
((nbPages > pId) ? '' : ' class="disabled"')+
346-
'><a href="javascript:void(0)">&raquo;</a></li>';
346+
'><a href="javascript:void(0)">&gt;</a></li>';
347347
}
348348
return h;
349349
},

sass/many.scss

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,3 @@ table {
151151
border-collapse: collapse;
152152
border-spacing: 0;
153153
}
154-
155-
// paging
156-
.evo-pagination{
157-
li[data-id="prev"], li[data-id="next"]{
158-
a{
159-
font-size: 24px;
160-
line-height: 23px;
161-
padding: 1px 8px 4px
162-
}
163-
}
164-
}
165-

0 commit comments

Comments
 (0)