Make WordPress Core

Ticket #21334: inline-edit-post.diff

File inline-edit-post.diff, 536 bytes (added by adamsilverstein, 12 years ago)

jquery to make post list more accessible by showing quick links on post title focus

  • inline-edit-post.js

     
    7878                        t.revert();
    7979                        $('select[name^="action"]').val('-1');
    8080                });
     81       
     82        //show the 'quick links' section when user tabs into post title triggering focus
     83        $('td.post-title a.row-title').on('focus', function(e){
     84            $(this).parent().next().css("visibility", "visible")
     85        });
    8186        },
    8287
    8388        toggle : function(el){