Changeset 8117
- Timestamp:
- 11/08/07 16:36:52 (1 year ago)
- Files:
-
- spinoffs/scriptaculous/CHANGELOG (modified) (1 diff)
- spinoffs/scriptaculous/src/controls.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/scriptaculous/CHANGELOG
r8083 r8117 1 * Fix a regression with autocompleters not responding correctly to cursor keys on both Safari and IE. Closes #10107. [thx Zman771] 2 1 3 *V1.8.0* (November 6, 2007) 2 4 spinoffs/scriptaculous/src/controls.js
r8069 r8117 87 87 88 88 Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this)); 89 Event.observe(this.element, 'key press', this.onKeyPress.bindAsEventListener(this));89 Event.observe(this.element, 'keydown', this.onKeyPress.bindAsEventListener(this)); 90 90 }, 91 91 … … 143 143 this.markPrevious(); 144 144 this.render(); 145 if(Prototype.Browser.WebKit)Event.stop(event);145 Event.stop(event); 146 146 return; 147 147 case Event.KEY_DOWN: 148 148 this.markNext(); 149 149 this.render(); 150 if(Prototype.Browser.WebKit)Event.stop(event);150 Event.stop(event); 151 151 return; 152 152 }