summaryrefslogtreecommitdiffhomepage
path: root/plugin/notes
AgeCommit message (Collapse)Author
2020-06-21Well, I don't need a thesis in corona-timesMarvin Borner
2020-05-05New project layoutMarvin Borner
2019-05-22Notes: Weakly enforce a minimum allocated pacing time per slideFlorian Haas
When using the totalTime-based pacing calculation, a presenter may inadvertently set totalTime and per-slide data-timing attributes in such a way that the pacing time for some slides is impossibly low or even negative. Add a check to ensure that the pacing on a slide never falls below a configurable minimum, defaulting to 0. Display an alert if the pacing for any slide(s) falls below the threshold.
2019-05-12Notes: Introduce alternate pacing timer, based on total presentation timeFlorian Haas
The current pacing timer operates on the assumption that there is a default amount of time to be allocated to each slide, and that individual slides can deviate from that default by specifying their own data-timing attribute. This patch introduces an alternate pacing method: by specifying the totalTime configuration option, the presenter can set the total time available to present. The pacing timer will then continue to allocate the exact pacing time for slides that do have data-timing set, as before. However, rather than applying the defaultTiming constant to all others, it will - Add up the time already allocated to slides via data-timing; - subtract that from totalTime; - divide the difference by the number of slides without data-timing set; - apply the thus-calculated average to those slides. totalTime has no default, and if both defaultTiming and totalTime are set, totalTime wins. This preserves backward compatibility: if a presenter has set defaultTiming and updates reveal.js, totalTime will be null and defaultTiming is still applied to all slides without a data-timing attribute. The presenter can then switch to the automatic calculation, if desired, by setting a value for totalTime.
2019-03-14support for plugins where the init method doesn't return a PromiseHakim El Hattab
2019-03-14more forgiving code highlight line number format, add Promise polyfillHakim El Hattab
2019-03-11notes plugin: callRevealApi wants apply, not callDougal J. Sutherland
2019-03-04highlight, math, notes and zoom plugins now register via Reveal.registerPluginHakim El Hattab
2019-03-04reveal.js plugin flow now uses promises, refactor markdown plugin to use ↵Hakim El Hattab
promises
2018-10-08Merge pull request #2251 from oyron/2229-speaker-notes-bugHakim El Hattab
Give focus to previously opened speaker notes (fixes #2229)
2018-10-05Handle previously opened notes window, by giving focus.oyron
2018-10-04formatting and tweaks for #2104Hakim El Hattab
2018-10-04resolve notes merge conflictHakim El Hattab
2018-05-05Fixed notes timer when speaker notes window opened via RevealNotes.open()Greg Denehy
2018-04-24speaker view has visible connection status, times out with error after 5sHakim El Hattab
2018-02-20documentationMartin Jurča
2018-02-20fixed showing speaker's view with timings/pacing while serving the ↵Martin Jurča
presentation from the file system
2017-12-04prevent cmd+r in notes window since reloading breaks the view #1958Hakim El Hattab
2017-12-04Merge pull request #1958 from ThomasWeinert/feature/block_f5_in_notesHakim El Hattab
Block F5 in speaker notes window, avoid disconnects
2017-11-29Merge branch 'plugin-key-bindings' of https://github.com/denehyg/reveal.js ↵Hakim El Hattab
into dev
2017-08-12Block F5 in speaker notes window, avoid disconnectsThomas Weinert
2017-07-13localstorage feature test in notes plugin, fixes speaker view error in safariHakim El Hattab
2017-04-30Fixed notes.js to account for upstream updatesGreg Denehy
2017-04-30Merge branch 'dev' into plugin-key-bindingsGreg Denehy
2017-04-30Changed custom key binding config properties to use 'keyCode' instead of 'code'Greg Denehy
2017-04-30Added programatic support for custom key bindings with optional descriptions ↵Greg Denehy
to be added to the help screen
2017-04-21minor tweak for #1564Hakim El Hattab
2017-04-20optionally display pacing advice based on slide timingsAdam Spiers
Add an option to display advice on whether the current pace of the presentation is on track for the right timing (shown as green), and if not, whether the presenter should speed up (shown as red) or has the luxury of slowing down (blue). The pacing timer can be enabled by configuring by the `defaultTiming` parameter in the `Reveal` configuration block, which specifies the number of seconds per slide. 120 can be a reasonable rule of thumb. Timings can also be given per slide `<section>` by setting the `data-timing` attribute. Both values are in numbers of seconds. When the option is enabled, clicking on the timers will reset the timer to the beginning of the current slide, i.e. as if pacing was perfectly on track, not to zero as if the presentation had just begun.
2017-04-20don't show negative signs inside minutes/seconds elementsAdam Spiers
2017-04-20round decreasing timers to mirror increasing timersAdam Spiers
2017-04-20avoid deleting existing classes when muting time elementsAdam Spiers
and make muting work for negative values
2017-04-20don't mute minutes when hours is unmutedAdam Spiers
2017-04-20use opacity for muted clock elementsAdam Spiers
This allows us to use different colours for different timers, which will be useful when we add a pacing timer.
2017-04-20extract time display code into new _displayTime() functionAdam Spiers
This will allow us to reuse the display code for displaying an additional pacing timer.
2017-04-20Allow popup window access to Reveal APIAdam Spiers
2017-01-31improved fragment notes support #1636Hakim El Hattab
2017-01-31Merge pull request #1636 from traff/masterHakim El Hattab
For a fragment: allow to show a separate note defined in it
2016-09-21speaker layouts in server side notes pluginHakim El Hattab
2016-09-21layout selector for speaker view; includes four optionsHakim El Hattab
2016-07-04For a fragment: allow to show a separate note defined in itDmitry Trofimov
When a slide has several fragments it could be convenient to define a note for each of them. In this case we need to show only this specific note defined in a fragment and not others. General note of a slide shouldn't be also shown, as a more specific one should have greater relevance in this case.
2016-06-10Horizontal 2-1 View for the speaker notes instead of a vertical 1-2Timothep
2016-03-09notes plugin no longer syncs overview mode #1446Hakim El Hattab
2016-03-09fix notes regex #1522 #1392Hakim El Hattab
2016-03-06Fix query parameter issue in notes plugin.Benjamin Tan
Closes #1392.
2016-01-08code formatHakim El Hattab
2016-01-08Merge branch 'patch-1' of https://github.com/danieltdt/reveal.js into devHakim El Hattab
2016-01-08include speaker view keyboard shortcut when applicable #1466Hakim El Hattab
2015-10-09Fixed #1379 - config keyboard now disables 's' keyrohithpr
2015-09-25notes defined in data-notes attributes retain preformatted whitespaceHakim El Hattab
2015-04-02support query parameters within notes pluginFND
2015-03-05Add support for custom notes.html fileDaniel Teixeira
It would be nice if we could define a custom notes.html file. Actually, I'm used to compile my js files before releasing my app and, using selectors like `script[src$="notes.js"]`, doesn't work :( So, what do you think about it?
2014-10-16better handling of overflowing speaker notes #1017Hakim El Hattab
2014-09-28prevent auto-sliding in notes frames #1004Hakim El Hattab
2014-09-27dont open notes when S is pressed inside of notes window #991Hakim El Hattab
2014-05-04clicking on notes timer now resets it #779Hakim El Hattab
2014-04-26enable reveal.js keyboard shortcuts anywhere in notes windowHakim El Hattab
2014-04-22skip transitions in notes window for better main window performanceHakim El Hattab
2014-04-22limit how often the notes window updates presentation statesHakim El Hattab
2014-04-22notes code format tweaksHakim El Hattab
2014-04-22dont toggle paused/overview modes needlessly when setting stateHakim El Hattab
2014-04-20update style of notes plugin to match SlidesHakim El Hattab
2014-04-19notes plugin now operates entirely through window.postMessage, adding ↵Hakim El Hattab
support for file protocol
2014-02-17server side notes plugin now supports input via data-notes attributeHakim El Hattab
2013-10-22configure notes presentation through query string to avoid flickerHakim El Hattab
2013-09-14prevent unintended slide change eventDonald R. Huettl
This prevents the upcoming slide on the notes page from triggering slidechanged events. I believe this fixes issue 578, as well.
2013-08-29configure notes window presentations to hide needless UIHakim El Hattab
2013-07-26ensure notes window fragment states are mirrored in main window #538Hakim El Hattab
2013-07-26simplify client side notes pluginHakim El Hattab
2013-06-09merge notes timer rounding fixHakim El Hattab
2013-06-02Use Math.floor instead of parseInt to avoid problems with very small numbers ↵Thomas Rosenau
like 2e-10
2013-05-05merge notes float fix and support for multiple fragments with same indexHakim El Hattab
2013-05-02Added clear:left to notes DIVNigel Stanger
Resolves an issue where the first label (e.g., first bullet or first number) of a list would wrap to the right side of the window and be hidden under the clock element.
2013-05-01Replace the ShowDown Markdown engine with markedAmit Kotlovski
2013-02-27update main window when current slide changes in notes (closes #343)Hakim El Hattab
2013-02-06merge in notes improvementhakimel
2013-02-06find correct path to open html file from the notes.js pathDamjan Georgievski
2013-01-26merge in timer in notes window, timer now stays hidden until initial time is setHakim El Hattab
2013-01-26Add clock and elapsed time to notes viewCharlie DeTar
2013-01-23show error when notes run on non-http, fix load order to make sure upcoming ↵hakimel
slide is correct when notes open (#278)
2013-01-21remove debug codehakimel
2013-01-21notes window now displays correct slides when origin is different than ↵hakimel
index.html (closes #278)
2012-11-16fix incorrect navigation in notes window (closes #241)Hakim El Hattab
2012-10-28remove console.logHakim El Hattab
2012-10-28updated markdown references in notes pluginHakim El Hattab
2012-10-25merge in support for stepped fragments in notes windowHakim El Hattab
2012-10-24Delete functionality to control presentation from notes windowMichael Kühnel
Its was impossible (at least for me) to keep the windows in sync without bloating the code too much.
2012-10-24Delete console output.Michael Kühnel
2012-10-24Make the fragments visible in speaker notesMichael Kühnel
2012-10-20clean up trailing whitespace (closes #197)Hakim El Hattab
2012-10-20new postMessage-based notes plugin, moved node-based notes to notes-server ↵Hakim El Hattab
(#190)