From aa8bd30590dc8499e0b0a6f801c4956f8f712f61 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 29 Jun 2009 11:31:45 +0000 Subject: - fix text input style by setting its type git-svn-id: https://svn.roundcube.net/trunk@2686 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 1 + 1 file changed, 1 insertion(+) 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)+']+$'); -- cgit v1.2.3