summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-29 11:31:45 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-29 11:31:45 +0000
commitaa8bd30590dc8499e0b0a6f801c4956f8f712f61 (patch)
treeecadc24cef196681452965c1553532ca6925ad31
parentcbc97473d66d43cda29add3f13c4aaa4fd03afce (diff)
- fix text input style by setting its type
git-svn-id: https://svn.roundcube.net/trunk@2686 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/js/app.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 10b36756a..f903af0a1 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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)+']+$');