summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-06-29 11:31:45 +0000
committeralecpl <alec@alec.pl>2009-06-29 11:31:45 +0000
commit3d241d914ceb727f85f09e36da4529b4dc0baf14 (patch)
treea8b94ed27d78dca98f63357027774c2b9bd4e1c5
parent83f40222d133a4a9950df33c8a0516862da44a2b (diff)
- fix text input style by setting its type
-rw-r--r--program/js/app.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 10b36756a..f903af0a1 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3081,6 +3081,7 @@ function rcube_webmail()
{
var reg = new RegExp('.*['+RegExp.escape(this.env.delimiter)+']');
this.name_input = document.createElement('INPUT');
+ this.name_input.type = 'text';
this.name_input.value = this.env.subscriptionrows[id][0].replace(reg, '');
reg = new RegExp('['+RegExp.escape(this.env.delimiter)+']?[^'+RegExp.escape(this.env.delimiter)+']+$');