Files
carpseeds.pl/wp-content/plugins/jet-data-importer/assets/js/jet-data-export.js
2024-07-15 11:28:08 +02:00

19 lines
412 B
JavaScript

( function( $, JetDataExport ) {
"use strict";
JetDataExport = {
globalProgress: null,
init: function(){
$( '#jet-export' ).on( 'click', function( event ) {
var $this = $( this ),
href = $this.attr( 'href' );
event.preventDefault();
window.location = href + '&nonce=' + window.JetDataExportVars.nonce;
});
},
};
JetDataExport.init();
}( jQuery, window.JetDataExport ) );