Indospace.io
Indospace.io
Still working on Chrome Version 74.0.3729.131 (Official Build) (64-bit)
Nice! all checks passed now, i knew it!
@johndekroon I was thinking about porting this over to NodeJS, so all Javascript, it doesn't seem too difficult to do. How are you with Javascript? I will also create a...
If you know to code it in Python and can submit a pull request, we all benefit greatly. As for me, I am a NodeJS/Javascript coder. I plan on building...
Just use the latest version of node. Can't really go wrong with that I am thinking. At time of writing this, latest version is 9.4, there were problems with NPM...
Any update on this? We need another version release push bad! Thanks for all the great work put into this. **When I get some free time I'd like to contribute...
to suppress this warning you can... ` addEventListener('touchstart', this.callPassedFuntion, { passive: false }) ` https://stackoverflow.com/questions/39152877/consider-marking-event-handler-as-passive-to-make-the-page-more-responsive
Even better?... ``` $(document).ready(function() { document.addEventListener('touchstart', onTouchStart, {passive: true}) .../ the rest of your code.. }) ``` https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners
https://github.com/mattbryson/TouchSwipe-Jquery-Plugin/pull/345
Sounds good, thanks @mattbryson