Rene Hamburger
Rene Hamburger
You can reproduce this with [your own demo plunkr](https://plnkr.co/edit/DrEDetYnZkFxR7OWWrxS?p=preview): If you change the initial value of `sum` to 20 and reduce the window height to get a vertical scroll bar....
The workaround is to subscribe to the resize event yourself in the component that uses infinite scroll (or a base component it extends): ```ts Observable.fromEvent(window, 'resize') .takeUntil(componentDestroyed(this)) .debounceTime(100) .subscribe(() =>...
@toledox82, did you try `protocol: ftps` or `protocol: ftps-legacy`?
As all changes should relate to the same branch I would think, maybe a check like `$json['push']['changes'][0]['new']['name'] === BRANCH` is sufficient for bitbucket, as long as BRANCH is set to...
@blakeembrey, I'm experiencing a similar issue when running Protractor tests through ts-node. The line and column numbers of the stack traces of errors thrown in the test files themselves are...
I discovered the culprit! Protractor activates it's own source-map-support, which probably conflicts with the one in ts-node. Adding a `skipSourceMapSupport: true` to Protractor's config resolves the issue completely! I'll post...
Handsontable's is a different package and I don't think you can install it as 'handsontable'. So you would need to fork this repository and adjust the import path 'handsontable/dist/handsontable.full.js' that...
It might be worth contacting Handsoncode to see if they can think of a way to make both version accessible through the same module to prevent issues like that.
@arfis, please check if this is an issue with Handsontable itself, e.g., by editing [their example](https://handsontable.com/examples.html) on JSFiddle. If it is a Handsontable issue rather than a problem with our...
@Campoy10, please check if this is an issue with Handsontable itself, e.g., by editing [their example](https://handsontable.com/examples.html) on JSFiddle. If it is a Handsontable issue rather than a problem with our...