Changeset 8cfbc47e in github


Ignore:
Timestamp:
Oct 5, 2010 3:20:27 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
c288f99
Parents:
12daf6dd
Message:
  • Fix keyboard doesn't work with autocomplete list with Chrome (#1487029)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r538e1c8 r8cfbc47e  
    2121- Add Mail-Followup-To/Mail-Reply-To support (#1485547) 
    2222- Fix confirmation message isn't displayed after sending mail on Chrome (#1486177) 
     23- Fix keyboard doesn't work with autocomplete list with Chrome (#1487029) 
    2324 
    2425RELEASE 0.4.1 
  • program/js/app.js

    r538e1c8 r8cfbc47e  
    27692769  this.init_address_input_events = function(obj) 
    27702770  { 
    2771     var handler = function(e){ return ref.ksearch_keypress(e,this); }; 
    2772     obj.bind((bw.safari || bw.ie ? 'keydown' : 'keypress'), handler); 
    2773     obj.attr('autocomplete', 'off'); 
     2771    obj.keydown(function(e){ return ref.ksearch_keydown(e, this); }) 
     2772      .attr('autocomplete', 'off'); 
    27742773  }; 
    27752774 
     
    32793278 
    32803279  // handler for keyboard events on address-fields 
    3281   this.ksearch_keypress = function(e, obj) 
     3280  this.ksearch_keydown = function(e, obj) 
    32823281  { 
    32833282    if (this.ksearch_timer) 
Note: See TracChangeset for help on using the changeset viewer.