diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-07-02 15:27:46 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-07-02 15:27:46 +0000 |
| commit | 530c964d88c744f36a67e0ccce53b23a6735c6b4 (patch) | |
| tree | 8c004899b74ca3442eb11f5c64fd9704ae2e9321 /roundcubemail/program/js | |
| parent | eccfeed034824cd659a5a175ba4246718f3ba03c (diff) | |
- Added addressbook source selector in contact create form
git-svn-id: https://svn.roundcube.net/trunk@4901 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index c96c3ebee..53ae463b2 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -637,7 +637,11 @@ function rcube_webmail() } // contacts/identities else { - if ((input = $("input[name='_name']", form)) &&input.length && input.val() == '') { + // + if (props == 'reload') { + form.action += '?_reload=1'; + } + else if ((input = $("input[name='_name']", form)) &&input.length && input.val() == '') { alert(this.get_label('nonamewarning')); input.focus(); break; |
