regebro / impress-console

Speaker notes for impress.js
MIT License
133 stars 32 forks source link

shouldn't the notes be invisible on main presentation #14

Closed rlucian closed 9 years ago

rlucian commented 9 years ago

when adding the console feat as instructed , on the default presentation from impress.js , the notes are visible on the slides. is this expected behavior?

regebro commented 9 years ago

Yes, that is expected behavior. You have to hide them with css. For example:

.step .notes { display: none; }

regebro commented 9 years ago

I added a note about this in the README.

rlucian commented 9 years ago

excellent. thanks for the clarification.