Marko Čepo

Results 2 comments of Marko Čepo

``` @ViewChild("gallery") gallery: NgxGalleryComponent; @HostListener("mousewheel", ["$event"]) onMousewheel(event) { if (event.wheelDelta > 0) { this.gallery.preview.zoomIn(); } else { this.gallery.preview.zoomOut(); } } ``` For future explorers

https://github.com/mcepo/web-project/blob/38a1e05a4580c88aaf2503e842f75f4856f8212a/public_html/js/angular/services/map-apis/google/image-manager.service.js#L109 Hope this gets you started