This file contains hidden or 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
/* | |
This Code can delete a Bamboo plan branch via a web browser. See the minified version down below to be used as browser bookmark. | |
*/ | |
(function(){ | |
url = new URL(location.href) | |
params = new URLSearchParams(url.search) | |
if (!params.has('planKey')) { | |
alert('Browser is not on correct page.') | |
return | |
} |