Supporting Bootstrap 4
benjamij opened this issue ยท 6 comments
benjamij commented
Hey all,
Are there any plans to supporting Bootstrap 4? Changes seem minimal to make it work.
kjg531 commented
any answer on this?
aaj commented
Hello???
AdamMutimer commented
Based on that there have been no commits in about 3 years, I'd say the answer is no... but it only needs to be updated to use the new CSS options for Bootstrap v4
I'm in the process of doing this for myself right now. when I'm finished I suppose I can fork the project and release the changes
kbyatnal commented
Just add this after calling bootpag()
:
//make bootpag compatible with Bootstrap 4.0
$('#pagination li').addClass('page-item');
$('#pagination a').addClass('page-link');
Not the best solution, but works for now.
elite-koder commented
@kbyatnal your solution works, good hack