Changeset 8cfbc47e in github
- Timestamp:
- Oct 5, 2010 3:20:27 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- c288f99
- Parents:
- 12daf6dd
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/js/app.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r538e1c8 r8cfbc47e 21 21 - Add Mail-Followup-To/Mail-Reply-To support (#1485547) 22 22 - Fix confirmation message isn't displayed after sending mail on Chrome (#1486177) 23 - Fix keyboard doesn't work with autocomplete list with Chrome (#1487029) 23 24 24 25 RELEASE 0.4.1 -
program/js/app.js
r538e1c8 r8cfbc47e 2769 2769 this.init_address_input_events = function(obj) 2770 2770 { 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'); 2774 2773 }; 2775 2774 … … 3279 3278 3280 3279 // handler for keyboard events on address-fields 3281 this.ksearch_key press= function(e, obj)3280 this.ksearch_keydown = function(e, obj) 3282 3281 { 3283 3282 if (this.ksearch_timer)
Note: See TracChangeset
for help on using the changeset viewer.
