Guest User

Untitled

a guest
Mar 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. document.querySelectorAll('.comment-body a').forEach(a => {
  2. const matches = a.href.match(/pivotaltracker.com\/story\/show\/(\d+)/);
  3. if (matches) {
  4. const pid = matches[1];
  5. document.getElementById('merge_title_field').value += ` [Delivers #${pid}]`;
  6. }
  7. });
Add Comment
Please, Sign In to add comment