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) {
}
}
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++) {
......
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