module StackHelper

Public Instance Methods

stack() click to toggle source
# File lib/backpedal/helpers/stack_helper.rb, line 2
def stack
        content_tag :ol do
                session[:tree].split(",").each do |path|
                        concat content_tag :li, path
                end
        end
end