Ticket #17523: common.dev.patch
| File common.dev.patch, 569 bytes (added by wjbryant, 2 years ago) |
|---|
-
common.dev.js
310 310 }); 311 311 312 312 // tab in textareas 313 $('#newcontent'). keydown(function(e) {313 $('#newcontent').bind('keydown.wpTabKey', function(e) { 314 314 if ( e.keyCode != 9 ) 315 315 return true; 316 316 … … 337 337 e.preventDefault(); 338 338 }); 339 339 340 $('#newcontent').b lur(function(e) {340 $('#newcontent').bind('blur.wpTabKey', function(e) { 341 341 if ( this.lastKey && 9 == this.lastKey ) 342 342 this.focus(); 343 343 });
