Skip to content

Commit 1703951

Browse files
committed
Change BootstrapPaginator to support Bootstrap4
1 parent ce4b63b commit 1703951

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"remap-istanbul": "^0.7.0",
5555
"rxjs": "5.0.0-beta.12",
5656
"systemjs": "^0.19.39",
57-
"typescript": "~2.0.0",
57+
"typescript": "~2.1.0",
5858
"zone.js": "^0.6.25",
5959
"rimraf": "^2.5.4",
6060
"@types/lodash": "^4.14.37",

src/BootstrapPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import * as _ from "lodash";
4141
<a class="page-link" style="cursor: pointer">&raquo;</a>
4242
</li>
4343
</ul>
44-
<ul class="pagination pull-right" *ngIf="p.dataLength > minRowsOnPage">
44+
<ul class="pagination pull-right float-sm-right" *ngIf="p.dataLength > minRowsOnPage">
4545
<li class="page-item" *ngFor="let rows of rowsOnPageSet" [class.active]="p.rowsOnPage===rows" (click)="p.setRowsOnPage(rows)">
4646
<a class="page-link" style="cursor: pointer">{{rows}}</a>
4747
</li>

0 commit comments

Comments
 (0)