Pascal Temel

Results 9 comments of Pascal Temel

A little off topic, but it's great to see people willing to post bounties for this project. Thanks @Cryoplex

I've implemented hotkeys myself by using `this.videoAPI.currentTime += 10;`

Try this https://stackblitz.com/edit/angular-videogular-ry8ngn?file=app/hello.component.ts

I'm using it without any parameter (only `if CanExtractMateria() then`) and it works fine in my macros

Importing from 'rxjs/Observable' will break webSocket functionality

I know about the error and your fix does help, but if you want to use Observable.webSocket, importing from rxjs/Observable does not work. It SHOULD behave the same way as...

If you only want to check for touch device swipes (and not mouse drags on desktop), you can check the event.pointerType property. ``` hammertime.on('panright', (event) => { if (event.pointerType !==...