RailsApps/rails_layout

Foundation 5 topbar syntax correction

i5okie opened this issue · 1 comments

_navigation.html.haml:
...
%nav.top-bar{:data-topbar => true}
...

results in:
"undefined local variable or method `topbar'" error.

changing
%nav.top-bar{:data-topbar => true}
to
%nav.top-bar{"data-topbar" => true}

fixes that.

Thanks for catching this. I'll fix it in the next release.