diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-13 14:30:26 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-13 14:30:26 +0100 |
commit | 748152ed2d61ca24dda49fa9c6f18d547229eeeb (patch) | |
tree | c7b2c88b729c0e9088fc302364dd8c3eaf1e7053 /js | |
parent | 56216f17fa9784b990b0362b4c44fd236aeb1426 (diff) | |
download | bugzilla-748152ed2d61ca24dda49fa9c6f18d547229eeeb.tar.gz bugzilla-748152ed2d61ca24dda49fa9c6f18d547229eeeb.tar.xz |
Bug 850309: Allow pasted attachments to be flagged as patches
r=LpSolit, a=LpSolit
Diffstat (limited to 'js')
-rw-r--r-- | js/attachment.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/js/attachment.js b/js/attachment.js index 0c1560de0..d9bdabc4e 100644 --- a/js/attachment.js +++ b/js/attachment.js @@ -24,13 +24,12 @@ function updateCommentPrivacy(checkbox) { } } -function setContentTypeDisabledState(form) -{ +function setContentTypeDisabledState(form) { var isdisabled = false; if (form.ispatch.checked) isdisabled = true; - for (var i=0 ; i<form.contenttypemethod.length ; i++) + for (var i = 0; i < form.contenttypemethod.length; i++) form.contenttypemethod[i].disabled = isdisabled; form.contenttypeselection.disabled = isdisabled; @@ -39,9 +38,8 @@ function setContentTypeDisabledState(form) function TextFieldHandler() { var field_text = document.getElementById("attach_text"); - var greyfields = new Array("data", "ispatch", "autodetect", - "list", "manual", "contenttypeselection", - "contenttypeentry"); + var greyfields = new Array("data", "autodetect", "list", "manual", + "contenttypeselection", "contenttypeentry"); var i, thisfield; if (field_text.value.match(/^\s*$/)) { for (i = 0; i < greyfields.length; i++) { |