<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
SerializeJSON jQuery plugin.
https://github.com/marioizquierdo/jquery.serializeJSON
version 2.8.1 (Dec, 2016)

Copyright (c) 2012, 2017 Mario Izquierdo
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*/
!function (a) {
    if ("function" == typeof define &amp;&amp; define.amd) define(["jquery"], a); else if ("object" == typeof exports) {
        var b = require("jquery");
        module.exports = a(b)
    } else a(window.jQuery || window.Zepto || window.$)
}(function (a) {
    "use strict";
    a.fn.serializeJSON = function (b) {
        var c, d, e, f, g, h, i, j, k, l, m, n, o;
        return c = a.serializeJSON, d = this, e = c.setupOpts(b), f = d.serializeArray(), c.readCheckboxUncheckedValues(f, e, d), g = {}, a.each(f, function (a, b) {
            h = b.name, i = b.value, k = c.extractTypeAndNameWithNoType(h), l = k.nameWithNoType, m = k.type, m || (m = c.attrFromInputWithName(d, h, "data-value-type")), c.validateType(h, m, e), "skip" !== m &amp;&amp; (n = c.splitInputNameIntoKeysArray(l), j = c.parseValue(i, h, m, e), o = !j &amp;&amp; c.shouldSkipFalsy(d, h, l, m, e), o || c.deepSet(g, n, j, e))
        }), g
    }, a.serializeJSON = {
        defaultOptions: {
            checkboxUncheckedValue: void 0,
            parseNumbers: !1,
            parseBooleans: !1,
            parseNulls: !1,
            parseAll: !1,
            parseWithFunction: null,
            skipFalsyValuesForTypes: [],
            skipFalsyValuesForFields: [],
            customTypes: {},
            defaultTypes: {
                string: function (a) {
                    return String(a)
                }, number: function (a) {
                    return Number(a)
                }, boolean: function (a) {
                    var b = ["false", "null", "undefined", "", "0"];
                    return b.indexOf(a) === -1
                }, null: function (a) {
                    var b = ["false", "null", "undefined", "", "0"];
                    return b.indexOf(a) === -1 ? a : null
                }, array: function (a) {
                    return JSON.parse(a)
                }, object: function (a) {
                    return JSON.parse(a)
                }, auto: function (b) {
                    return a.serializeJSON.parseValue(b, null, null, {
                        parseNumbers: !0,
                        parseBooleans: !0,
                        parseNulls: !0
                    })
                }, skip: null
            },
            useIntKeysAsArrayIndex: !1
        }, setupOpts: function (b) {
            var c, d, e, f, g, h;
            h = a.serializeJSON, null == b &amp;&amp; (b = {}), e = h.defaultOptions || {}, d = ["checkboxUncheckedValue", "parseNumbers", "parseBooleans", "parseNulls", "parseAll", "parseWithFunction", "skipFalsyValuesForTypes", "skipFalsyValuesForFields", "customTypes", "defaultTypes", "useIntKeysAsArrayIndex"];
            for (c in b) if (d.indexOf(c) === -1) throw new Error("serializeJSON ERROR: invalid option '" + c + "'. Please use one of " + d.join(", "));
            return f = function (a) {
                return b[a] !== !1 &amp;&amp; "" !== b[a] &amp;&amp; (b[a] || e[a])
            }, g = f("parseAll"), {
                checkboxUncheckedValue: f("checkboxUncheckedValue"),
                parseNumbers: g || f("parseNumbers"),
                parseBooleans: g || f("parseBooleans"),
                parseNulls: g || f("parseNulls"),
                parseWithFunction: f("parseWithFunction"),
                skipFalsyValuesForTypes: f("skipFalsyValuesForTypes"),
                skipFalsyValuesForFields: f("skipFalsyValuesForFields"),
                typeFunctions: a.extend({}, f("defaultTypes"), f("customTypes")),
                useIntKeysAsArrayIndex: f("useIntKeysAsArrayIndex")
            }
        }, parseValue: function (b, c, d, e) {
            var f, g;
            return f = a.serializeJSON, g = b, e.typeFunctions &amp;&amp; d &amp;&amp; e.typeFunctions[d] ? g = e.typeFunctions[d](b) : e.parseNumbers &amp;&amp; f.isNumeric(b) ? g = Number(b) : !e.parseBooleans || "true" !== b &amp;&amp; "false" !== b ? e.parseNulls &amp;&amp; "null" == b &amp;&amp; (g = null) : g = "true" === b, e.parseWithFunction &amp;&amp; !d &amp;&amp; (g = e.parseWithFunction(g, c)), g
        }, isObject: function (a) {
            return a === Object(a)
        }, isUndefined: function (a) {
            return void 0 === a
        }, isValidArrayIndex: function (a) {
            return /^[0-9]+$/.test(String(a))
        }, isNumeric: function (a) {
            return a - parseFloat(a) &gt;= 0
        }, optionKeys: function (a) {
            if (Object.keys) return Object.keys(a);
            var b, c = [];
            for (b in a) c.push(b);
            return c
        }, readCheckboxUncheckedValues: function (b, c, d) {
            var e, f, g, h, i;
            null == c &amp;&amp; (c = {}), i = a.serializeJSON, e = "input[type=checkbox][name]:not(:checked):not([disabled])", f = d.find(e).add(d.filter(e)), f.each(function (d, e) {
                if (g = a(e), h = g.attr("data-unchecked-value"), null == h &amp;&amp; (h = c.checkboxUncheckedValue), null != h) {
                    if (e.name &amp;&amp; e.name.indexOf("[][") !== -1) throw new Error("serializeJSON ERROR: checkbox unchecked values are not supported on nested arrays of objects like '" + e.name + "'. See https://github.com/marioizquierdo/jquery.serializeJSON/issues/67");
                    b.push({name: e.name, value: h})
                }
            })
        }, extractTypeAndNameWithNoType: function (a) {
            var b;
            return (b = a.match(/(.*):([^:]+)$/)) ? {nameWithNoType: b[1], type: b[2]} : {nameWithNoType: a, type: null}
        }, shouldSkipFalsy: function (b, c, d, e, f) {
            var g = a.serializeJSON, h = g.attrFromInputWithName(b, c, "data-skip-falsy");
            if (null != h) return "false" !== h;
            var i = f.skipFalsyValuesForFields;
            if (i &amp;&amp; (i.indexOf(d) !== -1 || i.indexOf(c) !== -1)) return !0;
            var j = f.skipFalsyValuesForTypes;
            return null == e &amp;&amp; (e = "string"), !(!j || j.indexOf(e) === -1)
        }, attrFromInputWithName: function (a, b, c) {
            var d, e, f;
            return d = b.replace(/(:|\.|\[|\]|\s)/g, "\\$1"), e = '[name="' + d + '"]', f = a.find(e).add(a.filter(e)), f.attr(c)
        }, validateType: function (b, c, d) {
            var e, f;
            if (f = a.serializeJSON, e = f.optionKeys(d ? d.typeFunctions : f.defaultOptions.defaultTypes), c &amp;&amp; e.indexOf(c) === -1) throw new Error("serializeJSON ERROR: Invalid type " + c + " found in input name '" + b + "', please use one of " + e.join(", "));
            return !0
        }, splitInputNameIntoKeysArray: function (b) {
            var c, d;
            return d = a.serializeJSON, c = b.split("["), c = a.map(c, function (a) {
                return a.replace(/\]/g, "")
            }), "" === c[0] &amp;&amp; c.shift(), c
        }, deepSet: function (b, c, d, e) {
            var f, g, h, i, j, k;
            if (null == e &amp;&amp; (e = {}), k = a.serializeJSON, k.isUndefined(b)) throw new Error("ArgumentError: param 'o' expected to be an object or array, found undefined");
            if (!c || 0 === c.length) throw new Error("ArgumentError: param 'keys' expected to be an array with least one element");
            f = c[0], 1 === c.length ? "" === f ? b.push(d) : b[f] = d : (g = c[1], "" === f &amp;&amp; (i = b.length - 1, j = b[i], f = k.isObject(j) &amp;&amp; (k.isUndefined(j[g]) || c.length &gt; 2) ? i : i + 1), "" === g ? !k.isUndefined(b[f]) &amp;&amp; a.isArray(b[f]) || (b[f] = []) : e.useIntKeysAsArrayIndex &amp;&amp; k.isValidArrayIndex(g) ? !k.isUndefined(b[f]) &amp;&amp; a.isArray(b[f]) || (b[f] = []) : !k.isUndefined(b[f]) &amp;&amp; k.isObject(b[f]) || (b[f] = {}), h = c.slice(1), k.deepSet(b[f], h, d, e))
        }
    }
});

(function ($) {
    /**
     * Watch for all the content forms and listen for a submit action
     */
    $(document).on('submit', 'form.content-form', function (e) {
        e.preventDefault();

        var $form = $(this),
            serialized = $form.serializeJSON(),
            postData = {
                form_type: serialized['form-type'],
                form_id: serialized['form-id'],
                post_id: serialized['post-id'],
                form_builder: serialized['form-builder'],
                data: serialized.data,
                nonce: serialized['_wpnonce_' + serialized['form-type']],
            };

        $form.addClass('content-form-loading');

        window.jQuery.ajax({
            url: contentFormsSettings.restUrl + `submit`,
            dataType: 'json',
            method: 'POST',
            data: postData,
            beforeSend: function (xhr) {
                xhr.setRequestHeader('X-WP-Nonce', window.contentFormsSettings.nonce);
            },
            success: function (data) {
                $form.removeClass('content-form-loading');

                var status = 'error';

                if (typeof data.success !== "undefined" &amp;&amp; data.success) {
                    status = 'success';
                }

                addContentFormNotice(data, status, $form);
            },
            error: function (e) {
                $form.removeClass('content-form-loading');

                addContentFormNotice(e, 'error', $form);

                console.error(e)
            }
        });
    });

    /**
     * Handle Form notices
     * @param notice
     * @param type
     * @param $form
     */
    var addContentFormNotice = function (notice, type, $form) {
        var noticeStatus = 'content-form-success';
        var $currentNotice = $form.find('.content-form-notice-wrapper');
        if (notice.success === false || (notice.status &gt;= 400 &amp;&amp; notice.status &lt; 500) ) {
            noticeStatus = 'content-form-error';
        }
        var noticeData = typeof notice.responseText !== 'undefined' ? jQuery.parseJSON(notice.responseText) :  notice;
		var noticeText = noticeData.message;
		var style = typeof formStyle !== 'undefined' &amp;&amp; formStyle.formStyle !== '' ? formStyle.formStyle : '';

        var noticeEl = '&lt;div class="content-form-notice-wrapper"&gt;&lt;h3 ' + style +' class="content-form-notice ' + noticeStatus + '" &gt;' + noticeText + '&lt;/h3&gt;&lt;/div&gt;';

        if ($currentNotice.length &gt; 0) {
            $currentNotice.replaceWith(noticeEl)
        } else {
            $form.prepend(noticeEl);
        }
    }
})(jQuery);
</pre></body></html>