You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just created 3 fresh projects using angular-fullstack generator and all suffer from non working bootstrap components. No other changes have been applied to any files (running Windows 7, nodeJs v0.10.32)
My generator configuration:
# Client
? What would you like to write scripts with?: JavaScript
? What would you like to write markup with?: HTML
? What would you like to write stylesheets with?: Sass
? What Angular router would you like to use?: uiRouter
? Would you like to include Bootstrap?: Yes
? Would you like to include UI Bootstrap?: Yes
# Server
? Would you like to use mongoDB with Mongoose for data modeling?: Yes
? Would you scaffold out an authentication boilerplate?: Yes
? Would you like to include additional oAuth strategies?: Google
? Would you like to use socket.io?: Yes
Another time I did not use Mongoose and I tried without Sass.
The non-working can easily be seen when hovering over the List at the bottom, which should bring up a tooltip. Adding other bootstrap components to the page does not work either.
The text was updated successfully, but these errors were encountered:
Ever since angular 1.3 hit bower (I think), the version spec of ">=1.2.*" causes angular 1.3.0 to be >installed. However, package angular-socket-io still depends on "~1.2.6" causing a conflict.
In this case, rather than angular-socket-io, the issue is with angular-bootstrap, which does not yet support angular 1.3.x. If you want to be safe, I would suggest making the same changes from that PR #655 (at least to your bower.json), then running bower install from the root of your project.
As a side note, if you are set on sticking with 1.3 I found that this suggested fix (angular-ui/bootstrap#2927 (comment)) of listing all the attributes, required and optional, of the bootstrap directive which seems to make at least some of the bootstrap directives work. That said, I can't say what else might break if you stick with angular 1.3. Curious to know if others using 1.3 have been running into any other issues.
I just created 3 fresh projects using angular-fullstack generator and all suffer from non working bootstrap components. No other changes have been applied to any files (running Windows 7, nodeJs v0.10.32)
My generator configuration:
Another time I did not use Mongoose and I tried without Sass.
The non-working can easily be seen when hovering over the List at the bottom, which should bring up a tooltip. Adding other bootstrap components to the page does not work either.
The text was updated successfully, but these errors were encountered: