diff options
author | alecpl <alec@alec.pl> | 2009-06-29 11:31:45 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-29 11:31:45 +0000 |
commit | 3d241d914ceb727f85f09e36da4529b4dc0baf14 (patch) | |
tree | a8b94ed27d78dca98f63357027774c2b9bd4e1c5 | |
parent | 83f40222d133a4a9950df33c8a0516862da44a2b (diff) |
- fix text input style by setting its type
-rw-r--r-- | program/js/app.js | 1 |
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)+']+$'); |