regebro / impress-console

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

Notes appearing on slides #6

Closed martynwheeler closed 11 years ago

martynwheeler commented 11 years ago

Hi there, Fabulous work on your add on to impress.js. Just one question, are the notes supposed to show up on the slide?

Here’s my example

  <div id="ls1" class="step heading" data-x="4000" data-y="800" data-rotate="270">
            <h1>Learning Styles: Do they exist?</h1>
            <div class="notes">The notes go here</div>
  </div>

However, the notes are appearing in the slide as well as the presentation?

I would appreciate any advice. Thanks Martyn

regebro commented 11 years ago

impress-console does not modify the presentation itself in any way, so you need to hide the notes from the presentation. I use:

.step .notes {
    display: none;
}