PluginProbe
Stream – Activity Log & Audit Trail / 3.8.2
Stream – Activity Log & Audit Trail v3.8.2
4.4.0 4.3.0 4.2.2 4.2.1 trunk 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.1 3.1.1 3.10.0 3.2.0 3.2.1 3.2.2 3.2.3 All 50 releases
stream / ui / js / wpseo-admin.js

wpseo-admin.js in Stream – Activity Log & Audit Trail 3.8.2, at ui/js/wpseo-admin.js

37 lines 804 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* globals jQuery */
2 jQuery(
3 function( $ ) {
4 var highlight, input, tab;
5
6 if ( window.location.hash.substr( 'stream-highlight-' ) ) {
7 highlight = window.location.hash.replace( 'stream-highlight-', '' );
8 input = $( ':input' + highlight );
9
10 window.location.hash = '';
11
12 if ( input.length ) {
13 if ( $( '#wpseo-tabs' ).length ) {
14 tab = input.parents( '.wpseotab' ).first().attr( 'id' );
15 window.location.hash = '#top#' + tab;
16 }
17
18 jQuery( document ).ready(
19 function() {
20 setTimeout(
21 function() {
22 $( 'body,html' ).animate(
23 { scrollTop: input.offset().top - 50 },
24 'slow',
25 function() {
26 input.animate( { backgroundColor: 'yellow' }, 'slow' );
27 }
28 );
29 }, 500
30 );
31 }
32 );
33 }
34 }
35 }
36 );
37