Skip to content

Instantly share code, notes, and snippets.

@8bitDesigner
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 8bitDesigner/8852066 to your computer and use it in GitHub Desktop.
Save 8bitDesigner/8852066 to your computer and use it in GitHub Desktop.
Copy the title and link of every selected TP card
copy($('.tau-selected.tau-card-v2').map(function(i, el) {
return $(el).data('card-data')
}).toArray().sort(function(a, b) {
return (a.type === b.type) ? 0 : a.type > b.type
}).map(function(obj) {
return window.location.origin + '/entity/' + obj.id + ' -- ' + '[' + obj.type + '] ' + obj.name
}))
@8bitDesigner
Copy link
Author

How do I use this?

  1. Select some cards in TargetProcess
  2. Paste this code into the Javascript console
  3. ✨ You now have stories in your paste buffer ✨

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment