Skip to content

Instantly share code, notes, and snippets.

@davidlee
Forked from dnch/gist:83923
Created March 24, 2009 03:50
Show Gist options
  • Save davidlee/83924 to your computer and use it in GitHub Desktop.
Save davidlee/83924 to your computer and use it in GitHub Desktop.
module PageHelper
def hero?
!!params[:event_url]
end
def event?
!hero? && !!params[:url]
end
def hero_or_event
hero? ? :hero : (:event if event?)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment