Last active
August 29, 2015 14:09
-
-
Save alexgb/0fca7ca219a71b9398b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var match = location.href.match(/trello\.com\/([[cb])\/(.*)\//), | |
boardId; | |
if (match[1] === 'c') { | |
boardId = window.IdCache.getBoardIdForCard(match[2]); | |
} else { | |
boardId = window.IdCache.getBoardId(match[2]); | |
} | |
$.ajax('/1/boards/' + boardId).then(function(board) { | |
localStorage.setItem('copiedLabels', JSON.stringify(board.labelNames)); | |
console.log('Copied labels:', board.labelNames); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment