Show More
@@ -70,7 +70,7 b" replacing '-' and '_' into spaces" | |||
|
70 | 70 | * @param limit |
|
71 | 71 | * @returns {*[]} |
|
72 | 72 | */ |
|
73 | var getTitleAndDescription = function(sourceRef, elements, limit) { | |
|
73 | var getTitleAndDescription = function(sourceRefType, sourceRef, elements, limit) { | |
|
74 | 74 | var title = ''; |
|
75 | 75 | var desc = ''; |
|
76 | 76 | |
@@ -85,7 +85,9 b' var getTitleAndDescription = function(so' | |||
|
85 | 85 | } |
|
86 | 86 | else { |
|
87 | 87 | // use reference name |
|
88 |
|
|
|
88 | var normalizedRef = sourceRef.replace(/-/g, ' ').replace(/_/g, ' ').capitalizeFirstLetter() | |
|
89 | var refType = sourceRefType; | |
|
90 | title = 'Changes from {0}: {1}'.format(refType, normalizedRef); | |
|
89 | 91 | } |
|
90 | 92 | |
|
91 | 93 | return [title, desc] |
@@ -508,7 +508,7 b'' | |||
|
508 | 508 | ## create action |
|
509 | 509 | <li> |
|
510 | 510 | <a href="#create-actions" onclick="return false;" class="menulink childs"> |
|
511 |
<i class=" |
|
|
511 | <i class="icon-plus-circled"></i> | |
|
512 | 512 | </a> |
|
513 | 513 | |
|
514 | 514 | <div class="action-menu submenu"> |
@@ -250,9 +250,9 b'' | |||
|
250 | 250 | var added = data['stats'][0] |
|
251 | 251 | var deleted = data['stats'][1] |
|
252 | 252 | var commonAncestorId = data['ancestor']; |
|
253 | ||
|
254 | var prTitleAndDesc = getTitleAndDescription( | |
|
255 | sourceRef()[1], commitElements, 5); | |
|
253 | var _sourceRefType = sourceRef()[0]; | |
|
254 | var _sourceRefName = sourceRef()[1]; | |
|
255 | var prTitleAndDesc = getTitleAndDescription(_sourceRefType, _sourceRefName, commitElements, 5); | |
|
256 | 256 | |
|
257 | 257 | var title = prTitleAndDesc[0]; |
|
258 | 258 | var proposedDescription = prTitleAndDesc[1]; |
General Comments 0
You need to be logged in to leave comments.
Login now