gnu-social/public/plugins/TabFocus/tabfocus.js
Diogo Cordeiro 2a06261f75 [CORE][COMPOSER] Move extlib packages with immediate composer correspondent to composer dependencies
This adds a composer.json for all dependencies that are available
2019-08-03 17:47:24 +01:00

8 lines
185 B
JavaScript

jQuery(function($){
$('#notice_data-text').bind('keydown',function(e){
if (e.which==9) {
setTimeout(function(){ $('#notice_action-submit').focus(); },15);
}
});
});