lingz/alphabetical_paginate

<ul> not closed when using Bootstrap 3 flag

Closed this issue · 0 comments

fofr commented

When the bootstrap 3 flag is used, a <ul> tag is opened but never gets closed:

element = params[:bootstrap3] ? 'ul' : 'div'

I think line 59 should read:
(params[:bootstrap3] ? "</ul>" : "</div>")