We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94c7caa commit 66df223Copy full SHA for 66df223
1 file changed
assets/scripts/wplf-admin-form.js
@@ -48,10 +48,9 @@ $(document).ready(function() {
48
// save field array in a hidden input
49
$('input#wplf_fields').val( fields.join() );
50
$('input#wplf_required').val( required.join() );
51
-
52
}
53
54
- $('#content').bind('input propertychange', parseFields);
+ $('#content').bind('input propertychange', _.debounce(parseFields, 300));
55
parseFields();
56
57
// display email copy field if the feature is enabled
0 commit comments