Your IP : 216.73.216.138


Current Path : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-hover-cards-2/includes/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-hover-cards-2/includes/frontend.js.php

;(function($) {
	$('.fl-node-<?php echo $id; ?> .pp-hover-card').each( function() {
		$( this ).on( 'focus', function() {
			$( this ).addClass( 'focus' );
		} ).on( 'blur', function(e) {
			if ( $( e.relatedTarget ).closest( this ).length > 0 ) {
				return;
			}
			$( this ).removeClass( 'focus' );
		} );
	});

	$( document ).on( 'click focus keyup', function(e) {
		if ( $(e.target).closest( '.fl-node-<?php echo $id; ?> .pp-hover-card' ).length > 0 ) {
        	return;
		}
		$('.fl-node-<?php echo $id; ?> .pp-hover-card').removeClass('focus');
	} );
})(jQuery);