Changeset 8268
- Timestamp:
- 12/04/07 18:12:54 (9 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_view/helpers/javascripts/controls.js (modified) (2 diffs)
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/html/javascripts/controls.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8267 r8268 1 1 *SVN* 2 3 * Update script.aculo.us to 1.8.0.1. [madrobby] 2 4 3 5 * Add 'disabled' attribute to <OPTION> separators used in time zone and country selects. Closes #10354 [hasmanyjosh] trunk/actionpack/lib/action_view/helpers/javascripts/controls.js
r8087 r8268 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 } trunk/railties/CHANGELOG
r8248 r8268 1 1 *SVN* 2 3 * Update script.aculo.us to 1.8.0.1. [madrobby] 2 4 3 5 * Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [jbarnette] trunk/railties/html/javascripts/controls.js
r8087 r8268 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 }