Huon Imberger
Huon Imberger
[ng-infinite-scroll](https://sroze.github.io/ngInfiniteScroll/) always executed (fired the output) until the scroll distance was exceeded. A similar approach would work here I believe. The alternatives aren't great: 1. Manually load the first page...
In case it helps, this is what I've had to do to workaround the issues: ```javascript newCharacterFromSelection() { const selection = this.editor.quillEditor.getSelection(); const selectedText = this.editor.quillEditor.getText( selection.index, selection.length, ); //...
I am experiencing the same thing with Angular `9.1.9`. With webpack `mode: "development"` everything works. With `mode: "production"` (and everything else staying the same) I get the following errors when...
> @Plonq can you show code from declared components ? EDIT: I removed the code here because it's irrelevant and created noise. See my [solution](#issuecomment-642967209) below.
It also works with webpack `mode: "none"` so it's something to do with the production mode rather than the development mode.
Further to my previous comment, I've narrowed it down to TerserPlugin. With mode set to "none", and manually adding minification with TerserPlugin with default config, I get the error shown...
I have found a solution (to my problem at least). The problem seems to be the `resolve` function isn't getting dependencies automatically annotated by the `angularjs-annotate` babel plugin. I'm guessing...
Hi! I'm new to contributing, and since it's been a little while since the last activity, I'd like to start with this issue (there aren't many to choose from). The...
The issue mostly lies with the Pillow library (`PIL`) - its `Image.thumbnail` and `Image.crop` methods do not support GIF animations. However, there's a way to work around it by implementing...
I was shocked to find that this was a 'regression' when migrating from v4 to v5.