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