bulk-add.php
11 years ago
clone-form.php
9 years ago
delete-confirmation-modal.php
9 years ago
empty-trash-modal.php
9 years ago
link-form.php
9 years ago
more-options-modal.php
9 years ago
new-child.php
9 years ago
quickedit-link.php
9 years ago
quickedit-post.php
9 years ago
delete-confirmation-modal.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Modal for confirming link delete |
| 4 | */ |
| 5 | ?> |
| 6 | <div class="np-modal fade np-trash-modal" id="np-delete-confirmation-modal"> |
| 7 | <div class="modal-dialog"> |
| 8 | <div class="modal-content"> |
| 9 | <div class="modal-body"> |
| 10 | <p data-np-link-delete-text></p> |
| 11 | <a href="#" class="np-cancel-trash button modal-close" data-dismiss="modal"><?php _e('Cancel', 'wp-nested-pages'); ?></a> |
| 12 | <a href="#" class="button-primary" data-delete-confirmation><?php _e('Delete', 'wp-nested-pages'); ?></a> |
| 13 | </div> |
| 14 | </div><!-- /.modal-content --> |
| 15 | </div><!-- /.modal-dialog --> |
| 16 | </div><!-- /.modal --> |