diff options
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/app.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js index 059663e1..a5c79a39 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -559,7 +559,15 @@ function initRelease() { $('.release-write a[data-toggle]').on("click", function () { $('.release-preview-content').html("loading..."); }); - }()) + }()); + + // release new target selection + (function () { + $('#release-new-target-branch-list').on('click', 'a', function () { + $('#tag-target').val($(this).text()); + $('#release-new-target-name').text(" " + $(this).text()); + }); + }()); } (function ($) { |