Tomáš Livora

Results 25 comments of Tomáš Livora

@ajmas I've chosen [@foxglove/xmlrpc](https://www.npmjs.com/package/@foxglove/xmlrpc). It seems to be actively developed (latest commit just three weeks ago). And it is also backed up by a company which is almost always a...

@tatsujb How can it be intended behaviour? The library clearly cannot work properly together with Angular change detection.

The original question was about `@analytics/google-tag-manager`. And although @GeoMarkou posted a really good workaround for `@analytics/google-analytics`, those types are a little bit different. Here are the types for `@analytics/google-tag-manager` package:...

@santyas You simply put it to `something.d.ts` file anywhere in your project and TypeScript will pick it up.

How can we wait for `shown.bs.modal` event? I try to click on a submit button with `data-dismiss="modal"` attribute as soon as the modal is shown. Sometimes it closes the modal,...

The fact that this feature is still not implemented makes VS Code inferior to WebStorm, thus making Vetur quite useless. I would like to use VS Code (with Vetur) when...

I have managed to rotate the image using [blueimp-load-image](https://www.npmjs.com/package/blueimp-load-image) library: 1. Instal the library by running `npm i blueimp-load-image`. 2. Add the following script to your `angular.json` file: ```json {...

@mzane42 Sure, I use it like this to show the image which is being uploaded: ```typescript export class MyComponent implements OnInit, OnDestroy { public imageUrl$ = new BehaviorSubject(''); private imageObjectUrl:...

@amartinezg2001 You just need to create an object URL, pass it to Angular DOM sanitizer and then use the result as an image source URL in your template. I explained...

@mourner When can we expect this issue to be resolved? At the moment, there is no way how to detect that the GeoJSON source has been loaded.