Method: NavigationHelpers#link_to_next_lecture

Defined in:
lib/coursegen/course/helpers/navigation_helpers.rb


9
10
11
12
13
# File 'lib/coursegen/course/helpers/navigation_helpers.rb', line 9

def link_to_next_lecture
  the_citem = Toc.instance.find_next_forn(@item)
  the_item = @items[the_citem.identifier]
  link_to(the_citem.title, the_item)
end