summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-01-12 20:34:27 +0000
committerTed Trask <ttrask01@yahoo.com>2009-01-12 20:34:27 +0000
commit91e1593b3b5c32b4246a44b951e0aa6ad032e8db (patch)
treedb9f4be30f54071e1770a12a5f259a83bf3af80a
parent966ca39e60088ff5218b3167508f1552ec02ca32 (diff)
downloadacf-fetchmail-91e1593b3b5c32b4246a44b951e0aa6ad032e8db.tar.bz2
acf-fetchmail-91e1593b3b5c32b4246a44b951e0aa6ad032e8db.tar.xz
Modified several pages to replace contenteditable with readonly. Added readonly to html.lsp and .css files.
git-svn-id: svn://svn.alpinelinux.org/acf/fetchmail/trunk@1676 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--fetchmail-editentry-html.lsp8
1 files changed, 4 insertions, 4 deletions
diff --git a/fetchmail-editentry-html.lsp b/fetchmail-editentry-html.lsp
index 4253918..63cbf03 100644
--- a/fetchmail-editentry-html.lsp
+++ b/fetchmail-editentry-html.lsp
@@ -6,11 +6,11 @@ require("viewfunctions")
<%
form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
if page_info.action == "editentry" then
- form.value.remotehost.contenteditable = false
+ form.value.remotehost.readonly = true
form.value.method.type = "text"
- form.value.method.contenteditable = false
- form.value.remotemailbox.contenteditable = false
- form.value.localdomain.contenteditable = false
+ form.value.method.readonly = true
+ form.value.remotemailbox.readonly = true
+ form.value.localdomain.readonly = true
end
local order = { "remotehost", "enabled", "method", "remotemailbox", "remotepassword", "ssl", "localhost", "localmailbox", "localdomain" }
displayform(form, order)