biggie icon indicating copy to clipboard operation
biggie copied to clipboard

Open links without going to the next slide

Open tallesl opened this issue 10 years ago • 1 comments

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?

tallesl avatar Feb 02 '15 00:02 tallesl

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.

tmcw avatar Feb 02 '15 18:02 tmcw