PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.2
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.2
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 / js / blockFrameSetup.js

blockFrameSetup.js in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.2, at assets/js/blockFrameSetup.js

17 lines 474 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // moved to separate file so we could enqueue it and make sure jquery was loaded
2
3 (function() {
4 jQuery( document ).ready( function() {
5 var frameEl = window.frameElement;
6
7 // get the form element
8 var $form = jQuery('.wpuf-form-add');
9 // get the height of the form
10 var height = $form.find( '.wpuf-form' ).outerHeight(true);
11
12 if (frameEl) {
13 frameEl.height = height + 125;
14 }
15 });
16
17 })();