Skip to content

Commit

Permalink
Create hook_when_new_issue_create.js
Browse files Browse the repository at this point in the history
  • Loading branch information
onozaty committed Jun 11, 2016
1 parent 5958f28 commit 51c883f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions hook_when_new_issue_create.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
Path pattern: /issues/(new|[0-9]+/copy)
Type: JavaScript
チケット作成時に処理を行う
*/
$(function() {
$('#issue-form').submit(function() {
// タイトルの先頭にカスタムフィールドの値を埋め込む
var subject = $('#issue_custom_field_values_1 option:selected').text() + ':' + $('#issue_subject').val();
$('#issue_subject').val(subject);
});
});

0 comments on commit 51c883f

Please sign in to comment.