PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.1
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.1
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / assets / components / modal / template.php

template.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.1, at assets/components/modal/template.php

23 lines 887 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div>
2 <div :class="['wpuf-form-template-modal', show ? 'show' : 'hide' ]">
3
4 <span class="screen-reader-text"><?php _e( 'Modal window. Press escape to close.', 'wpuf' ); ?></span>
5 <a href="#" class="close" v-on:click.prevent="closeModal()">× <span class="screen-reader-text"><?php _e( 'Close modal window', 'wpuf' ); ?></span></a>
6
7 <header class="modal-header">
8 <slot name="header"></slot>
9 </header>
10
11 <div :class="['content-container', this.$slots.footer ? 'modal-footer' : 'no-footer']">
12 <div class="content">
13 <slot name="body"></slot>
14 </div>
15 </div>
16
17 <footer v-if="this.$slots.footer">
18 <slot name="footer"></slot>
19 </footer>
20 </div>
21 <div :class="['wpuf-form-template-modal-backdrop', show ? 'show' : 'hide' ]"></div>
22 </div>
23