Commit 748152ed authored by Byron Jones's avatar Byron Jones

Bug 850309: Allow pasted attachments to be flagged as patches

r=LpSolit, a=LpSolit
parent 56216f17
...@@ -24,13 +24,12 @@ function updateCommentPrivacy(checkbox) { ...@@ -24,13 +24,12 @@ function updateCommentPrivacy(checkbox) {
} }
} }
function setContentTypeDisabledState(form) function setContentTypeDisabledState(form) {
{
var isdisabled = false; var isdisabled = false;
if (form.ispatch.checked) if (form.ispatch.checked)
isdisabled = true; 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.contenttypemethod[i].disabled = isdisabled;
form.contenttypeselection.disabled = isdisabled; form.contenttypeselection.disabled = isdisabled;
...@@ -39,9 +38,8 @@ function setContentTypeDisabledState(form) ...@@ -39,9 +38,8 @@ function setContentTypeDisabledState(form)
function TextFieldHandler() { function TextFieldHandler() {
var field_text = document.getElementById("attach_text"); var field_text = document.getElementById("attach_text");
var greyfields = new Array("data", "ispatch", "autodetect", var greyfields = new Array("data", "autodetect", "list", "manual",
"list", "manual", "contenttypeselection", "contenttypeselection", "contenttypeentry");
"contenttypeentry");
var i, thisfield; var i, thisfield;
if (field_text.value.match(/^\s*$/)) { if (field_text.value.match(/^\s*$/)) {
for (i = 0; i < greyfields.length; i++) { for (i = 0; i < greyfields.length; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment