]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/plugins/akismet/_inc/akismet.js
WordPress 4.4
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / _inc / akismet.js
index 5e857d16128bc7d4bbcf8dbaacbde1507ea31c32..fb54f9f1e730d6e9fc004cf8a7553ffc8f6e70cd 100644 (file)
@@ -1,4 +1,8 @@
 jQuery( function ( $ ) {
+       var mshotRemovalTimer = null;
+       var mshotSecondTryTimer = null
+       var mshotThirdTryTimer = null
+       
        $( 'a.activate-option' ).click( function(){
                var link = $( this );
                if ( link.hasClass( 'clicked' ) ) {
@@ -101,30 +105,55 @@ jQuery( function ( $ ) {
 
                return false;
        });
-       $('a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type').mouseover(function () {
-               var wpcomProtocol = ( 'https:' === location.protocol ) ? 'https://' : 'http://';
-               // Need to determine size of author column
-               var thisParentWidth = $(this).parent().width();
-               // It changes based on if there is a gravatar present
-               thisParentWidth = ($(this).parent().find('.grav-hijack').length) ? thisParentWidth - 42 + 'px' : thisParentWidth + 'px';
-               if ($(this).find('.mShot').length == 0 && !$(this).hasClass('akismet_undo_link_removal')) {
-                       var self = $( this );
-                       $('.widefat td').css('overflow', 'visible');
-                       $(this).css('position', 'relative');
-                       var thisHref = $.URLEncode( $(this).attr('href') );
-                       $(this).append('<div class="mShot mshot-container" style="left: '+thisParentWidth+'"><div class="mshot-arrow"></div><img src="//s0.wordpress.com/mshots/v1/'+thisHref+'?w=450" width="450" class="mshot-image" style="margin: 0;" /></div>');
-                       setTimeout(function () {
-                               self.find( '.mshot-image' ).attr('src', '//s0.wordpress.com/mshots/v1/'+thisHref+'?w=450&r=2');
-                       }, 6000);
-                       setTimeout(function () {
-                               self.find( '.mshot-image' ).attr('src', '//s0.wordpress.com/mshots/v1/'+thisHref+'?w=450&r=3');
-                       }, 12000);
-               } else {
-                       $(this).find('.mShot').css('left', thisParentWidth).show();
+
+       // Show a preview image of the hovered URL. Applies to author URLs and URLs inside the comments.
+       $( 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, table.comments td.comment p a' ).mouseover( function () {
+               clearTimeout( mshotRemovalTimer );
+
+               if ( $( '.akismet-mshot' ).length > 0 ) {
+                       if ( $( '.akismet-mshot:first' ).data( 'link' ) == this ) {
+                               // The preview is already showing for this link.
+                               return;
+                       }
+                       else {
+                               // A new link is being hovered, so remove the old preview.
+                               $( '.akismet-mshot' ).remove();
+                       }
                }
-       }).mouseout(function () {
-               $(this).find('.mShot').hide();
-       });
+
+               clearTimeout( mshotSecondTryTimer );
+               clearTimeout( mshotThirdTryTimer );
+
+               var thisHref = $.URLEncode( $( this ).attr( 'href' ) );
+
+               var mShot = $( '<div class="akismet-mshot mshot-container"><div class="mshot-arrow"></div><img src="//s0.wordpress.com/mshots/v1/' + thisHref + '?w=450" width="450" height="338" class="mshot-image" /></div>' );
+               mShot.data( 'link', this );
+
+               var offset = $( this ).offset();
+
+               mShot.offset( {
+                       left : Math.min( $( window ).width() - 475, offset.left + $( this ).width() + 10 ), // Keep it on the screen if the link is near the edge of the window.
+                       top: offset.top + ( $( this ).height() / 2 ) - 101 // 101 = top offset of the arrow plus the top border thickness
+               } );
+
+               mshotSecondTryTimer = setTimeout( function () {
+                       mShot.find( '.mshot-image' ).attr( 'src', '//s0.wordpress.com/mshots/v1/'+thisHref+'?w=450&r=2' );
+               }, 6000 );
+
+               mshotThirdTryTimer = setTimeout( function () {
+                       mShot.find( '.mshot-image' ).attr( 'src', '//s0.wordpress.com/mshots/v1/'+thisHref+'?w=450&r=3' );
+               }, 12000 );
+
+               $( 'body' ).append( mShot );
+       } ).mouseout( function () {
+               mshotRemovalTimer = setTimeout( function () {
+                       clearTimeout( mshotSecondTryTimer );
+                       clearTimeout( mshotThirdTryTimer );
+
+                       $( '.akismet-mshot' ).remove();
+               }, 200 );
+       } );
+
        $('.checkforspam:not(.button-disabled)').click( function(e) {
                $('.checkforspam:not(.button-disabled)').addClass('button-disabled');
                $('.checkforspam-spinner').addClass( 'spinner' );