diff options
Diffstat (limited to 'data/lib/otherButtons.js')
-rw-r--r-- | data/lib/otherButtons.js | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js index 507a3b3..060ce16 100644 --- a/data/lib/otherButtons.js +++ b/data/lib/otherButtons.js @@ -4,7 +4,7 @@ /** * Set background color of all comments made by reporter in ReporterColor color - * + * */ function checkComments() { var reporter = getReporter(); @@ -28,7 +28,7 @@ function collectComments() { /** * Find default assignee based on the current component - * + * * @return String what would be a default assignee if we haven't set it up. */ function getDefaultAssignee() { @@ -38,7 +38,7 @@ function getDefaultAssignee() { /** * Set default assignee - * + * * @return none sets this.defaultAssignee property according to defaultAssignee * list */ @@ -63,7 +63,8 @@ function markBugTriaged() { if (hasXorgBugsCategory && !hasXorgBugsCategory()) { alert("This won't do! First set the category!"); } - else if (isEnterprise && !isEnterprise() && (getSeverity() == 'unspecified')) { + else if (isEnterprise && !isEnterprise() + && (getSeverity() == 'unspecified')) { alert("This won't do! Specify some severity!"); } else { @@ -73,7 +74,7 @@ function markBugTriaged() { var FillMagicDoneRE = new RegExp("^\\s*\\[[0-9a-zA-Z_]*\\]"); -function addingEmbelishments(list) { +function addingEmbelishments(logList) { var maintCCAddr = ""; if (constantData.CCmaintainer) { @@ -127,7 +128,7 @@ function addingEmbelishments(list) { /** * Set branding colours to easily distinguish between Fedora and RHEL bugs - * + * * @param brand * String with product of the current bug * @param version |