Browse Source
Merge pull request #21033 from abpframework/auto-merge/prerel-9-0/3062
Merge branch dev with prerel-9.0
pull/21067/head
maliming
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
1 deletions
-
npm/packs/core/src/abp.js
|
|
|
@ -480,7 +480,11 @@ var abp = abp || {}; |
|
|
|
|
|
|
|
var args = Array.prototype.slice.call(arguments, 1); |
|
|
|
for (var i = 0; i < callbacks.length; i++) { |
|
|
|
callbacks[i].apply(this, args); |
|
|
|
try { |
|
|
|
callbacks[i].apply(this, args); |
|
|
|
} catch(e) { |
|
|
|
console.error(e); |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
|