Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. async.eachOfSeries(chordinfo, function(item, i, callback) {
  2.  
  3.  
  4. var subchords = item[0].c;
  5.  
  6.  
  7.  
  8. angular.forEach(subchords, function (item, i) {
  9.  
  10.  
  11.  
  12.  
  13. var id = randomstring.randomString(10);
  14.  
  15.  
  16. var thing = '<div id = "'+ id + '">' + id + '</div>
  17.  
  18.  
  19. }); //for each subchords
  20.  
  21.  
  22. callback();
  23.  
  24.  
  25.  
  26. }, function(err) {
  27.  
  28. console.log('All done!');
  29.  
  30.  
  31. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement