Travis Skweres

Results 24 comments of Travis Skweres

Perhaps this is an Angular 9 issue? Here's my package.json: ``` { "name": "web", "version": "0.0.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "test": "ng test", "lint":...

Fixed it in index.esm.js: line 1455: ``` var _a = center.geopoint, centerLat = _a.latitude, centerLng = _a.longitude; **CORRECTED** var _a = center.geopoint, centerLat = _a._lat, centerLng = _a._long; ```

I can verify this, had the same issue, and when I gave the container a fixed height, animateTo worked fine.

I had to fork it and put a try catch in the code of the JS file, I use a local version now

@tjvantoll the issue on this thread is more about routing and loading the modules

Same issue when using this.routerExtensions.back() with lazy-loaded tab routes

@bpaczkowski-merix solution with skipLocationChange in the transition worked for me

@shprink can I change it back and forth inside of the controllers? I would like the pixelBottom to be 0 on some pages, and 44px on others.

@shprink actually after much testing doesn't work, the setDefaultOptions fixedPixelsBottom always overrides everything else. In default options I have fixedPixelsBottom: 0, and in states code: ``` .state('home', { url: '/home',...