We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the widgetgenerator the path become /widgets/file_name/.html.
This because of the join in widgetgenerator.rb ->
Dashing.config.widgets_views_path.call.join(file_name, '.html') Dashing.config.widgets_css_path.join('widgets', file_name, '.scss') Dashing.config.widgets_js_path.join('widgets', file_name, '.coffee')
Proposed solution: "#{file_name}.html" instead
"#{file_name}.html"
The text was updated successfully, but these errors were encountered:
good catch, i'll fix that up ! thx
Sorry, something went wrong.
6848f4f
No branches or pull requests
When using the widgetgenerator the path become /widgets/file_name/.html.
This because of the join in widgetgenerator.rb ->
Dashing.config.widgets_views_path.call.join(file_name, '.html') Dashing.config.widgets_css_path.join('widgets', file_name, '.scss') Dashing.config.widgets_js_path.join('widgets', file_name, '.coffee')
Proposed solution:
"#{file_name}.html"
insteadThe text was updated successfully, but these errors were encountered: