biggie
biggie copied to clipboard
Open links without going to the next slide
I like to put links on my presentations, but any interaction that I do on the page makes it goes to the next slide. Left clicking goes to the next slide followed soon by the page load of the link, feels weird. Right click (to open to a new tab) just goes to the next slide.
Is this only me?
I didn't dive into the source... how hard would be to allow (right) clicking on links?
This would be upstream in big - biggie is just a friendly interface. Seems doable, it'd be something like
document.onclick = function(e) { !e.shiftKey && e.which === 1 && go(++big.current % (s.length)); };
Though it'll take a little testing to make sure that this doesn't trip up mobile.