Socket
Socket
Sign inDemoInstall

@abp/jquery

Package Overview
Dependencies
Maintainers
2
Versions
203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@abp/jquery - npm Package Compare versions

Comparing version 4.2.2 to 4.3.0-rc.1

4

package.json
{
"version": "4.2.2",
"version": "4.3.0-rc.1",
"name": "@abp/jquery",

@@ -8,3 +8,3 @@ "publishConfig": {

"dependencies": {
"@abp/core": "~4.2.2",
"@abp/core": "~4.3.0-rc.1",
"jquery": "~3.5.1"

@@ -11,0 +11,0 @@ },

@@ -1,2 +0,2 @@

var abp = abp || {};
var abp = abp || {};
(function($) {

@@ -102,4 +102,5 @@

return $.Deferred(function ($dfd) {
$.ajax(options)
var xhr = null;
var promise = $.Deferred(function ($dfd) {
xhr = $.ajax(options)
.done(function (data, textStatus, jqXHR) {

@@ -109,2 +110,6 @@ $dfd.resolve(data);

}).fail(function (jqXHR) {
if(jqXHR.status === 0 || jqXHR.statusText === 'abort') {
//ajax request is abort, ignore error handle.
return;
}
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') {

@@ -116,3 +121,7 @@ abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd);

});
});
}).promise();
promise['jqXHR'] = xhr;
return promise;
};

@@ -119,0 +128,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc