| | 72 | |
| | 73 | //show the 'quick links' section when user tabs into post title triggering focus |
| | 74 | $('td.post-title a').on('focus', function(e){ |
| | 75 | $(this).parents('.post-title').first().find('.row-actions').addClass('show-row-actions'); |
| | 76 | }).on('blur', function () { |
| | 77 | // Tabbing between post title and .row-actions links needs a breif pause in some browsers |
| | 78 | // else the .row-actions div gets hidden in transit |
| | 79 | setTimeout( function () { |
| | 80 | $(this).parents('.post-title').first().find('.row-actions').removeClass('show-row-actions'); |
| | 81 | }, 30 ); |
| | 82 | }); |