WordPress/wp-includes/js/wp-ajax-response.min.js
Aaron Jorbin 0e21d32900 Build/Test: Bump devDependencies for WordPress 5.3
This upgrades a number of devDependencies.  Some of these include changes to how the tasks are configured.

Uglify: There are deprecated options from 2.x to 4.x, see: https://github.com/gruntjs/grunt-contrib-uglify#options

Autoprefixer: Browserslist now warns when passing in the browser list, so that is put into package.json

As with most changes to uglify, this changes every minified JS file.

Fixes #48203.



Built from https://develop.svn.wordpress.org/trunk@46408


git-svn-id: http://core.svn.wordpress.org/trunk@46206 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-10-05 19:49:10 +00:00

1 line
2.0 KiB
JavaScript

window.wpAjax=jQuery.extend({unserialize:function(e){var r,t,i,n,a={};if(!e)return a;for(i in(r=e.split("?"))[1]&&(e=r[1]),t=e.split("&"))jQuery.isFunction(t.hasOwnProperty)&&!t.hasOwnProperty(i)||(a[(n=t[i].split("="))[0]]=n[1]);return a},parseAjaxResponse:function(a,e,o){var s={},r=jQuery("#"+e).empty(),u="";return a&&"object"==typeof a&&a.getElementsByTagName("wp_ajax")?(s.responses=[],s.errors=!1,jQuery("response",a).each(function(){var n,e=jQuery(this),r=jQuery(this.firstChild);(n={action:e.attr("action"),what:r.get(0).nodeName,id:r.attr("id"),oldId:r.attr("old_id"),position:r.attr("position")}).data=jQuery("response_data",r).text(),n.supplemental={},jQuery("supplemental",r).children().each(function(){n.supplemental[this.nodeName]=jQuery(this).text()}).length||(n.supplemental=!1),n.errors=[],jQuery("wp_error",r).each(function(){var e,r,t,i=jQuery(this).attr("code");e={code:i,message:this.firstChild.nodeValue,data:!1},(r=jQuery('wp_error_data[code="'+i+'"]',a))&&(e.data=r.get()),(t=jQuery("form-field",r).text())&&(i=t),o&&wpAjax.invalidateForm(jQuery("#"+o+' :input[name="'+i+'"]').parents(".form-field:first")),u+="<p>"+e.message+"</p>",n.errors.push(e),s.errors=!0}).length||(n.errors=!1),s.responses.push(n)}),u.length&&r.html('<div class="error">'+u+"</div>"),s):isNaN(a)?!r.html('<div class="error"><p>'+a+"</p></div>"):-1==(a=parseInt(a,10))?!r.html('<div class="error"><p>'+wpAjax.noPerm+"</p></div>"):0!==a||!r.html('<div class="error"><p>'+wpAjax.broken+"</p></div>")},invalidateForm:function(e){return jQuery(e).addClass("form-invalid").find("input").one("change wp-check-valid-field",function(){jQuery(this).closest(".form-invalid").removeClass("form-invalid")})},validateForm:function(e){return e=jQuery(e),!wpAjax.invalidateForm(e.find(".form-required").filter(function(){return""===jQuery("input:visible",this).val()})).length}},wpAjax||{noPerm:"Sorry, you are not allowed to do that.",broken:"Something went wrong."}),jQuery(document).ready(function(e){e("form.validate").submit(function(){return wpAjax.validateForm(e(this))})});