Tomas Rimkus

Results 204 comments of Tomas Rimkus

@ovchinnikov Why doesn't it happen when "inner toolbar" layout is used then?

> The min-height property of dxScrollable content is set to 101%. That is why you see a scrollbar in the iOS simulator. It's necessary to prevent whole page bounce behavior...

@ovchinnikov You are right. Unfortunately `overflow: hidden` solution disables page bounce on Mac OS Safari but not on iOS Safari.

CSS fix if someone needs it: ```css .user-name { font-size: 14px; color: $base-text-color; margin-left: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: normal; width: 114px; text-align: left; } ```

Right now you can manually call `tourService.disableHotkeys()` to disable hotkeys, but it might be a good idea to automatically disable hotkeys when `goToNextOnAnchorClick` is enabled and allow user to disable...

This has been implemented in [v9 release](https://github.com/hakimio/ngx-ui-tour/releases/tag/v9.0.0).

Hi, What are the errors you are getting in your tests? Theoretically it should still work fine with Angular v14 even it's not marked as compatible. There are still a...

Not sure why it doesn't just work when you provide `RouterTestingModule`. The only other option I see is to mock the `Router` yourself, but that will require mocking a lot...

Does it work if you try to inject the Angular Router yourself? ``` onstructor( private router: Router ) { } ```

Might be time to delete `package lock` file, `node modules` and reinstall everything ;)