I'm at Barcamp London today and decided to give a last minute talk. I realized I could use Scittle and josh ☝️ and I was able to build a slides app and write my slides in 15 minutes. 😂 Talk went well. Scittle is so good! https://github.com/chr15m/barcamp-whats-the-point-of-lisp https://chr15m.github.io/barcamp-whats-the-point-of-lisp
> navigate to the next slide from a phone? Do you mean using the phone as a kind of remote control?
No, just to view the slides from my phone. As far as I could tell, you have to go to the next slide with the keyboard?
Ah yes, will fix!
I guess I'll just make it tapping the left/right side of the page. 🤔
That would work perfectly!
Done. I pushed a new build with that feature, thanks for the suggestion.
By the way sorry to spam the channel but I packaged up the tiny scittle slideshow viewer as a separate thing anybody can use: https://github.com/chr15m/scittle-tiny-slides It's only a handful of lines of code so I'm not sure it's worth posting on #announcements etc but I thought maybe it would be useful to people here!
Awesome, works great! My phone wants to try selecting text when I'm clicking around, but I'd say that's minor compared to being able to view the slides.
I'll probably try your slideshow tool next time I'm making slides for something - looking forward to then!
Yeah I noticed the select problem too. I changed the handler to onclick instead of pointerstart but I am still seeing it. 🤔
Maybe an e.preventDefault() is required?
I think it's happening only if you click through quickly because it gets intercepted as a double-click and preventDefault doesn't seem to fix that.
I suppose I should be explicitly adding areas that the user should be tapping and checking those. Wow this problem escalated quickly.
I propose laying it to rest! Now that I can click through from my phone, I'm happy 🙂
Possibly annoying question: is it possible to navigate to the next slide from a phone?
Lovely how little code is required to make that slideshow viewer chef_kiss