RailsApps / rails_layout

Generates Rails application layout files for various front-end frameworks.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Foundation 5 topbar syntax correction

i5okie opened this issue · 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.