-
Notifications
You must be signed in to change notification settings - Fork 216
Documentation: Tell somewhere which extra files you need to include #131
Comments
Thanks for posting this! +1 |
I'm using yo:angular generator and the above snippet worked for me in regards to the dependencies. But when I grunt build on the project bower seems to remove item.js from the final output. I believe it is related to issue #100. I've tried messing with bower.json file as mentioned but item.js continues to be removed in dist. Is anyone else having this issue upon build? |
Okay I found the source of the source of issue metafizzy/outlayer#33. Looks like a bower thing that is waiting to be PR'd on that project. Adding the following to my bower.json did the trick for me at long last.
|
+1 |
As of today using <!-- begin angular-masonry -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/jquery-bridget/jquery.bridget.js"></script>
<script src="node_modules/desandro-get-style-property/get-style-property.js"></script>
<script src="node_modules/get-size/get-size.js"></script>
<script src="node_modules/wolfy87-eventemitter/EventEmitter.js"></script>
<script src="node_modules/eventie/eventie.js"></script>
<script src="node_modules/doc-ready/doc-ready.js"></script>
<script src="node_modules/desandro-matches-selector/matches-selector.js"></script>
<script src="node_modules/fizzy-ui-utils/utils.js"></script>
<script src="node_modules/outlayer/item.js"></script>
<script src="node_modules/outlayer/outlayer.js"></script>
<script src="node_modules/masonry-layout/masonry.js"></script>
<script src="node_modules/imagesloaded/imagesloaded.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-masonry/angular-masonry.js"></script>
<!-- end angular-masonry --> For anybody struggling, the order of those is very important. In particular, |
For instance (v0.13):
The text was updated successfully, but these errors were encountered: