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
I try, but received this error on console. My code is:
<div class="grid"> <div masonry='{ "transitionDuration" : "0.4s" , "itemSelector" : ".tile", "columnWidth" : 160 }'> <div class="grid-item" masonry-tile ng-repeat="item in items"> <img ng-src="{{ item.src }}" class="img-responsive" onerror="this.src='/public/img/404.jpg'"/>
Any idea?
The text was updated successfully, but these errors were encountered:
Update: I add ImagesLoad library to index.html
<script src="https://npmcdn.com/[email protected]/imagesloaded.pkgd.js"></script>
Now the error is: TypeError: elem.get is not a function On line 58:
imagesLoaded( elem.get(0), update);
What is the problem? Please.
Sorry, something went wrong.
I solve the problem. Replace "elem.get(0)" with "elem.eq(0)".
elem.get is a jQuery method not angular jqLite method
try including this one if you are using jquery..:)
No branches or pull requests
I try, but received this error on console. My code is:
Any idea?
The text was updated successfully, but these errors were encountered: