2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
module ApplicationHelper
|
2016-03-12 18:46:06 +00:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2016-12-01 15:26:25 +00:00
|
|
|
|
|
|
|
def id_paginate(path, per_page, collection)
|
|
|
|
# todo
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|