modal-cache-warmup.php
7 months ago
modal-disconnect.php
1 year ago
modal-go-live.php
7 months ago
modal-modes.php
1 year ago
modal-not-optimized-CPT.php
1 year ago
modal-optimization-mode.php
7 months ago
modal-plugin-deactivate.php
10 months ago
modal-posttypes.php
11 months ago
modal-processing-html-error.php
7 months ago
modal-processing-html-success.php
7 months ago
modal-processing-html.php
7 months ago
modal-purge-cache.php
1 year ago
modal-safemode.php
1 year ago
modal-test-mode.php
7 months ago
modal-unsaved-changes.php
1 year ago
modal-processing-html.php
30 lines
| 1 | <?php |
| 2 | $modal_header = esc_html__( 'Optimizing your home page', 'nitropack' ); |
| 3 | ?> |
| 4 | <div id="processing-html-modal" data-modal-backdrop="dynamic" tabindex="-1" aria-hidden="true" |
| 5 | class="hidden modal-wrapper popup-modal"> |
| 6 | <div class="popup-container"> |
| 7 | <div class="popup-inner"> |
| 8 | <!-- Modal header --> |
| 9 | <div class="popup-header"> |
| 10 | <h3><?php echo $modal_header; ?></h3> |
| 11 | </div> |
| 12 | <!-- Modal body --> |
| 13 | <div class="popup-body"> |
| 14 | <div id="optimization-animation"></div> |
| 15 | <script> |
| 16 | lottie.loadAnimation({ |
| 17 | container: document.getElementById('optimization-animation'), |
| 18 | renderer: 'svg', |
| 19 | loop: true, |
| 20 | autoplay: true, |
| 21 | path: '<?php echo plugin_dir_url( __FILE__ ) . '../animations/setting-html.json'; ?>' |
| 22 | }); |
| 23 | </script> |
| 24 | <p class="text-center"> |
| 25 | <?php _e( 'This may take up to 1 minute ...', 'nitropack' ); ?> |
| 26 | </p> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |