PluginProbe
Substack Importer / trunk
Substack Importer vtrunk
trunk 0.1.0 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0
substack-importer / js / index.js

index.js in Substack Importer trunk, at js/index.js

25 lines 526 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(($) => {
2
3 let process_posts = () => {
4 let data = {
5 action : 'substack_progress'
6 };
7
8 $.post(ajaxurl, data, (response) => {
9 let progress = (response.processed / response.total) * 100;
10 $('#substack-progress .progress-bar-fill').css('width', progress + '%');
11 if(response.status === 'processing') {
12 process_posts();
13 } else {
14 window.location = $('#substack-progress').data('pre-import-url');
15 }
16 });
17 };
18
19 if( $('div#substack-progress').length ) {
20 process_posts();
21 }
22
23 });
24
25