alecpl
2009-04-10 58c9dd72935e9ea4403681997bb1beb291d70bd4
- Fix DEL key problem in search boxes (#1485528)


3 files modified
6 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 3 ●●●●● patch | view | raw | blame | history
program/js/list.js 2 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix DEL key problem in search boxes (#1485528)
- Support several e-mail addresses per user from virtuser_file (#1485678)
- Fix drag&drop with scrolling on IE (#1485786)
- Fix adding signature separator in html mode (#1485350)
program/js/app.js
@@ -1299,6 +1299,9 @@
  this.click_on_list = function(e)
    {
    if (this.gui_objects.qsearchbox)
      this.gui_objects.qsearchbox.blur();
    if (this.message_list)
      this.message_list.focus();
    else if (this.contact_list)
program/js/list.js
@@ -824,8 +824,6 @@
      }
    }
  this.focus();
  return rcube_event.cancel(e);
},