This repository has been archived on 2022-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
Oldphaloskepsis/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js

50 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-01-12 23:10:07 +00:00
/* global jpTracksAJAX, jQuery */
(function( $, jpTracksAJAX ) {
$( document ).ready( function () {
$( 'body' ).on( 'click', '.jptracks a, a.jptracks', function( event ) {
// We know that the jptracks element is either this, or its ancestor
var $jptracks = $( this ).closest( '.jptracks' );
var data = {
tracksNonce: jpTracksAJAX.jpTracksAJAX_nonce,
action: 'jetpack_tracks',
tracksEventType: 'click',
tracksEventName: $jptracks.attr( 'data-jptracks-name' ),
tracksEventProp: $jptracks.attr( 'data-jptracks-prop' ) || false
};
// We need an event name at least
if ( undefined === data.tracksEventName ) {
return;
}
var url = $( this ).attr( 'href' );
var target = $( this ).get( 0 ).target;
if ( url && target && '_self' !== target ) {
var newTabWindow = window.open( '', target );
}
event.preventDefault();
$.ajax( {
type: 'POST',
url: jpTracksAJAX.ajaxurl,
data: data
} ).always( function() {
// Continue on to whatever url they were trying to get to.
if ( url ) {
if ( newTabWindow ) {
newTabWindow.location = url;
return;
}
window.location = url;
}
} );
});
});
})( jQuery, jpTracksAJAX );