Back to Blog
Disable Slidy Click Advance
#r #rmarkdownSlidy presentations in R, by default, advance on mouse-click, which can be frustrating.
Once you have a Slidy presentation loaded, the “k” key will disable this.
We can disable it more generally by modifying the rmarkdown
package you have
installed.
- Find your
rmarkdown
installation:
|
|
- Navigate to that directory, then edit the file:
rmd/slidy/Slidy2/scripts/slidy.js
- Find the line that defines
mouse_click_enabled
(inrmarkdown
version 2.20, this is line 55). Change the value oftrue
tofalse
.
Back to Blog