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
After installing this plugin, it worked locally. However, after I deploy to Heroku (or upgrade JHipster), there's an error:
Uncaught ReferenceError: compileServiceConfig is not defined
The text was updated successfully, but these errors were encountered:
To fix, _bootstrap-material.config.js needs to be:
(function() { 'use strict'; angular .module('<%=angularAppName%>') .config(bootstrapMaterialDesignConfig); bootstrapMaterialDesignConfig.$inject = []; function bootstrapMaterialDesignConfig() { $.material.init(); } })();
Sorry, something went wrong.
Thanks I will do the fix
Update _bootstrap-material.config.js
1a1d2ff
fixes moifort#15
Fix bootstrapMaterialDesignConfig
b393d7d
fix the bootstrapMaterialDesignConfig file according to: moifort/generator-jhipster-bootstrap-material-design#15
Successfully merging a pull request may close this issue.
After installing this plugin, it worked locally. However, after I deploy to Heroku (or upgrade JHipster), there's an error:
The text was updated successfully, but these errors were encountered: