mark-at-tusksoft

Results 10 comments of mark-at-tusksoft

Found the issue. GoogleAnalytics/Resources/GoogleAnalyticsInterop.ts line 25 ```script.src = "https://www.googletagmanager.com/gtag/js?id=" + trackingId;``` looks like this should be ```script.src = "https://www.googletagmanager.com/gtm.js?id=" + trackingId;``` I get a 403 when it is `/gtag/js` instead...

This is very likely a result of my ignorance around Google services. I was unaware there was a difference. Perhaps the 403 I was getting was due to `.../gtag/js` being...

I ended up saving v0.1.5 locally and modifying it to include a callback that I could feed in. ``` scope: { image: '=', resizeMaxHeight: '@?', resizeMaxWidth: '@?', resizeQuality: '@?', resizeType:...

Running into the same issue as reported in a similar library https://github.com/haf/DotNetZip.Semverd/issues/60 ``` Uncaught (in promise) Error: System.NotSupportedException: Synchronous reads are not supported. at Microsoft.AspNetCore.Components.Forms.BrowserFileStream.Read(Byte[] buffer, Int32 offset, Int32 count)...

Adding yet _another_ sub-query fixes this. ``` var pagedQuery = new Query().From(query.ForPage(request.Page, request.PageSize).Select("pg.Id"), "out"); var compiledQuery = _compiler.Compile(pagedQuery.Select("out.Id")); ``` Perhaps a boolean on `Query.Offset()` and `Query.ForPage()` to apply the original...

@VorTechS Updated

> Updated work-around: > > ``` > window.scrollToElementId = (elementId) => { > // Omitted for brevity > } > > async protected sealed override Task OnAfterRenderAsync(bool firstRender) > {...

Similar but not at that level All angular projects would still live under the same root folder Instead of `AbpCompanyName.AbpProjectName.Web.Host\src` and `AbpCompanyName.AbpProjectName.Web.Host\e2e` It would be `AbpCompanyName.AbpProjectName.Web.Host\projects\aspnet-zero-template\src` and `AbpCompanyName.AbpProjectName.Web.Host\projects\aspnet-zero-template\e2e` then from...

[Possibly related?](https://github.com/inuyaksa/jquery.nicescroll/issues/799#issuecomment-482200470)

Currently running into this as Blazor(wasm) Input Files use BrowserFileStream which does not support synchronous reads. ``` Uncaught (in promise) Error: System.NotSupportedException: Synchronous reads are not supported. at Microsoft.AspNetCore.Components.Forms.BrowserFileStream.Read(Byte[] buffer,...