Merge pull request #5999 from vvlladd28/improvement/load-resource/order

[3.4] UI: Fixed that widget JS resources will be loaded in the order in which they in list resources
This commit is contained in:
Igor Kulikov 2022-02-07 10:17:34 +02:00 committed by GitHub
commit 9f63c36344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -213,7 +213,7 @@ export class ResourcesService {
case 'js':
el = this.document.createElement('script');
el.type = 'text/javascript';
el.async = true;
el.async = false;
el.src = url;
break;
case 'css':