You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a known issue with async javascript code in the Ajax minifier that we encountered this week. We use AjaxMin.dll in our build pipeline tooling, it would be difficult to replace. Because of that, I looked in to the issue and I think it is fixed.
As far as I could see, the newest AjaxMinDll code has only one single issue with async javascript code: "await " is output as "await;" in the minified output code. I have implemented a fix in the AjaxMinDll source files in attached zip. Now our async code works as expected. AjaxMinDll-JavaScript-await.zip
To apply my fix, overwrite latest master files in AjaxMinDll\JavaScript with the files in my zip and recompile.
The text was updated successfully, but these errors were encountered:
There is a known issue with async javascript code in the Ajax minifier that we encountered this week. We use AjaxMin.dll in our build pipeline tooling, it would be difficult to replace. Because of that, I looked in to the issue and I think it is fixed.
As far as I could see, the newest AjaxMinDll code has only one single issue with async javascript code: "await " is output as "await;" in the minified output code. I have implemented a fix in the AjaxMinDll source files in attached zip. Now our async code works as expected.
AjaxMinDll-JavaScript-await.zip
To apply my fix, overwrite latest master files in AjaxMinDll\JavaScript with the files in my zip and recompile.
The text was updated successfully, but these errors were encountered: