Index: trunk/phase3/skins/common/edit.js |
— | — | @@ -191,7 +191,7 @@ |
192 | 192 | editForm.addEventListener('focus', onfocus, true); // This MUST be true to work |
193 | 193 | } else if ( editForm.attachEvent ) { |
194 | 194 | // IE needs a specific trick here since it doesn't support the standard |
195 | | - editForm.attachEvent( 'onfocusin', function() { onfocus(event); }, handler ); |
| 195 | + editForm.attachEvent( 'onfocusin', function() { onfocus(event); } ); |
196 | 196 | } |
197 | 197 | |
198 | 198 | editForm |