Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function createCardInAllLists(notification)
  2. {
  3. var added = new Notification(notification).addedCard("Master");
  4.  
  5. added.board().lists().each(function(list)
  6. {
  7. if(list.id() != added.currentList().id())
  8. added.copyToList(list);
  9. });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement