module NavbarHelper

def is_active?(path, options={})

def is_active?(path, options={})
  state = uri_state(path, options)
  "active" if state.in?([:active, :chosen]) || state === true
end