matenia / bootstrap-kaminari-views

MIT License
151 stars 29 forks source link

module application helper #16

Open cbtones opened 9 years ago

cbtones commented 9 years ago

Rails 4.2.2 In your Default Options, "theme: 'twitter-bootstrap'" is not working. module ApplicationHelper def paginate objects, options = {} options.reverse_merge!( theme: 'twitter-bootstrap' )

super( objects, options )

end

end

I preferred to add, options.reverse_merge!( theme: 'twitter-bootstrap-3' )

-Hope it helps