Guest User

Untitled

a guest
Jan 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function addChecklistBasedOnList(notification) {
  2. var notif = new Notification(notification);
  3. var card = notif.addedCard();
  4. notif.board().list("Info").card("Checklist Templates").copyChecklist(card.currentList().name(),card);
  5. }
  6.  
  7. function moveCompletedCard(notification)
  8. {
  9. new Notification(notification).completedChecklist().card().moveToNextList();
  10. }
Add Comment
Please, Sign In to add comment