summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-08-22 22:33:24 +0200
committerGitHub <noreply@github.com>2017-08-22 22:33:24 +0200
commit78a5f25336ae1b7b9489c8ca475086e9714c43dc (patch)
treef1e7bafe6f210f34c429610647f66e9c35b2bfea /extensions
parent012b4210329560d3e8aa092c955013173884b564 (diff)
downloadbugzilla-78a5f25336ae1b7b9489c8ca475086e9714c43dc.tar.gz
bugzilla-78a5f25336ae1b7b9489c8ca475086e9714c43dc.tar.xz
cleanup some stuff in new-bug (#215)
Diffstat (limited to 'extensions')
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/common_new_comment.html.tmpl57
-rw-r--r--extensions/BugModal/web/new_bug.js4
2 files changed, 2 insertions, 59 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/common_new_comment.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/common_new_comment.html.tmpl
deleted file mode 100644
index 80c42623b..000000000
--- a/extensions/BugModal/template/en/default/bug_modal/common_new_comment.html.tmpl
+++ /dev/null
@@ -1,57 +0,0 @@
-[%# This Source Code Form is subject to the terms of the Mozilla Public
- # License, v. 2.0. If a copy of the MPL was not distributed with this
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
- #
- # This Source Code Form is "Incompatible With Secondary Licenses", as
- # defined by the Mozilla Public License, v. 2.0.
- #%]
-
-[%#
- # comment: comment object
- # bug: bug object
- #%]
-
-<div id="add-comment">
-
- [% IF bug && !bug.check_can_change_field('longdesc', 0, 1) %]
- <div id="new-comment-notice">
- You are not allowed to make an additional comment on this [% terms.bug %].
- </div>
- [% RETURN %]
- [% END %]
-
- [% IF bug && user.is_insider %]
- <div id="add-comment-private"
- title="Make comment visible only to members of the '[% Param('insidergroup') FILTER html %]' group"
- >
- <input type="checkbox" name="comment_is_private" id="add-comment-private-cb"
- value="1" comment_id="[% comment.count FILTER none %]">
- <label for="add-comment-private-cb">Private</label>
- </div>
- [% END %]
-
- <ul id="comment-tabs" role="tablist">
- <li id="comment-edit-tab" data-focus="comment" role="tab" tabindex="0" aria-controls="comment-edit-tabpanel" aria-selected="true">
- Add Description
- </li>
- [%~ ~%]
- <li id="comment-preview-tab" role="tab" tabindex="-1" aria-controls="comment-preview-tabpanel" aria-selected="false">
- Preview
- <img id="preview-throbber" src="extensions/BugModal/web/throbber.gif" width="16" height="11" style="display:none">
- </li>
- <!-- <li id="comment-guide-tab" role="tab" tabindex="-2" aria-controls="comment-guide-tabpanel" aria-selected="false">
- <a href="page.cgi?id=etiquette.html" target="_blank" tabindex="-1">
- Comments Subject to Etiquette and Contributor Guidelines</a>
- </li> -->
- </ul>
-<!-- <div id="bugzilla-etiquette">
-
- </div> -->
-
- <div id="comment-edit-tabpanel" class="comment-tabpanel" role="tabpanel" aria-labelledby="comment-edit-tab">
- <textarea rows="5" [%+ UNLESS disable_cols %] cols="80" [% END +%] name="comment" id="comment" aria-labelledby="comment-edit-tab"></textarea>
- </div>
- <div id="comment-preview-tabpanel" class="comment-tabpanel" role="tabpanel" aria-labelledby="comment-preview-tab" style="display:none">
- <pre id="comment-preview" class="comment-text"></pre>
- </div>
-</div>
diff --git a/extensions/BugModal/web/new_bug.js b/extensions/BugModal/web/new_bug.js
index 7298b1d20..9c1d00854 100644
--- a/extensions/BugModal/web/new_bug.js
+++ b/extensions/BugModal/web/new_bug.js
@@ -63,8 +63,8 @@ $(document).ready(function() {
options: [],
preload: true,
create: false,
- load: function(query, callback) {
- callback(initial.products);
+ load: function(query, callback) {
+ callback(initial.products);
}
});
},