Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. var config = {
  2. paths:{
  3. // creates a module named 'masonry'
  4. // points to the masonry source file
  5. "masonry":"???/web/bower_components/masonry/masonry"
  6. },
  7.  
  8. shim:{
  9. // make sure that jquery is completely loaded when masonry starts loading
  10. 'masonry':{
  11. 'deps':['jquery']
  12. }
  13. }
  14. };
  15.  
  16. var config = {
  17. map:{
  18. "masonry":"bower_components/masonry/masonry"
  19. },
  20. shim:{
  21. 'masonry':{
  22. 'deps':['jquery']
  23. }
  24. }
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement