P

Results 47 comments of P

Thank you, I've solved this issue the same way, I added some timeout. But I think this is only a patch, it would need a real fix. UPDATE: I can...

@simalexan How should I cancel/end any further processing? These doesn't work: ``` event.preventDefault(); event.stopPropagation(); return false; ``` I want to add a caption input within the drop area, and the...

I've found a workaround without changing the script, I'm going to share it to help others: 1. Set the default message to false (this way we can add custom html...

UPDATE: @emog You need to downgrade your JDK version. Install JDK 8 `sudo apt install openjdk-8-jdk` Change the default version of JDK selecting from the appearing list: `sudo update-alternatives --config...

An ugly temporary workaround ``` this.searchResults$ = concat( of([]), // default items this.searchTerm$.pipe( distinctUntilChanged(), switchMap((term) =>{ if(term.length < this.searchTermMinLength){ return of([]); } this.peopleLoading = true return this.someService.search(term,{'scopes':'all'}).pipe( catchError(() => of([])),...

We have problems with several phones too. Using a custom file picker shows zero files. We would need to see XLSX files downloaded from a website. My old Note shows...

The same bug is happening with using `winkelTripel` projection. Zooms in way too much, like -200px is missing on each side. **Default projection:** ![image](https://user-images.githubusercontent.com/6192067/157143287-e59882ed-aaea-4559-9c8a-c65fee86e6e3.png) **winkelTripel projection** ![image](https://user-images.githubusercontent.com/6192067/157143363-e581de15-6906-4ac2-ab69-1463beda0b30.png)

Not that fast, it's just downloading matching videos from Youtube and converting them to audio files. I got a low-quality music library as a result.