Having some trouble trying to integrate Packery.js with my angularjs app.
It seems like they are not working well together. I tried setting isInitLayout
to false, but no luck.
This is the (bootstrap 3) HTML code I am using:
<div class="row" class="js-packery"
data-packery-options='{ "itemSelector": ".packery-item",
"gutter": 10,
"columnWidth": 60,
"isInitLayout": false }'>
<artifact class="packery-item" ng-repeat="(index, thing) in data | limitObjectTo:4" thing="thing"></artifact>
</div>
I'm starting to think that it could be because of the Artifact directive I'm using...