Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-21 | Well, I don't need a thesis in corona-times | Marvin Borner | |
2020-05-05 | New project layout | Marvin Borner | |
2019-05-22 | Notes: Weakly enforce a minimum allocated pacing time per slide | Florian 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-12 | Notes: Introduce alternate pacing timer, based on total presentation time | Florian 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-14 | support for plugins where the init method doesn't return a Promise | Hakim El Hattab | |
2019-03-14 | more forgiving code highlight line number format, add Promise polyfill | Hakim El Hattab | |
2019-03-11 | notes plugin: callRevealApi wants apply, not call | Dougal J. Sutherland | |
2019-03-04 | highlight, math, notes and zoom plugins now register via Reveal.registerPlugin | Hakim El Hattab | |
2019-03-04 | reveal.js plugin flow now uses promises, refactor markdown plugin to use ↵ | Hakim El Hattab | |
promises | |||
2018-10-08 | Merge pull request #2251 from oyron/2229-speaker-notes-bug | Hakim El Hattab | |
Give focus to previously opened speaker notes (fixes #2229) | |||
2018-10-05 | Handle previously opened notes window, by giving focus. | oyron | |
2018-10-04 | formatting and tweaks for #2104 | Hakim El Hattab | |
2018-10-04 | resolve notes merge conflict | Hakim El Hattab | |
2018-05-05 | Fixed notes timer when speaker notes window opened via RevealNotes.open() | Greg Denehy | |
2018-04-24 | speaker view has visible connection status, times out with error after 5s | Hakim El Hattab | |
2018-02-20 | documentation | Martin Jurča | |
2018-02-20 | fixed showing speaker's view with timings/pacing while serving the ↵ | Martin Jurča | |
presentation from the file system | |||
2017-12-04 | prevent cmd+r in notes window since reloading breaks the view #1958 | Hakim El Hattab | |
2017-12-04 | Merge pull request #1958 from ThomasWeinert/feature/block_f5_in_notes | Hakim El Hattab | |
Block F5 in speaker notes window, avoid disconnects | |||
2017-11-29 | Merge branch 'plugin-key-bindings' of https://github.com/denehyg/reveal.js ↵ | Hakim El Hattab | |
into dev | |||
2017-08-12 | Block F5 in speaker notes window, avoid disconnects | Thomas Weinert | |
2017-07-13 | localstorage feature test in notes plugin, fixes speaker view error in safari | Hakim El Hattab | |
2017-04-30 | Fixed notes.js to account for upstream updates | Greg Denehy | |
2017-04-30 | Merge branch 'dev' into plugin-key-bindings | Greg Denehy | |
2017-04-30 | Changed custom key binding config properties to use 'keyCode' instead of 'code' | Greg Denehy | |
2017-04-30 | Added programatic support for custom key bindings with optional descriptions ↵ | Greg Denehy | |
to be added to the help screen | |||
2017-04-21 | minor tweak for #1564 | Hakim El Hattab | |
2017-04-20 | optionally display pacing advice based on slide timings | Adam 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-20 | don't show negative signs inside minutes/seconds elements | Adam Spiers | |
2017-04-20 | round decreasing timers to mirror increasing timers | Adam Spiers | |
2017-04-20 | avoid deleting existing classes when muting time elements | Adam Spiers | |
and make muting work for negative values | |||
2017-04-20 | don't mute minutes when hours is unmuted | Adam Spiers | |
2017-04-20 | use opacity for muted clock elements | Adam Spiers | |
This allows us to use different colours for different timers, which will be useful when we add a pacing timer. | |||
2017-04-20 | extract time display code into new _displayTime() function | Adam Spiers | |
This will allow us to reuse the display code for displaying an additional pacing timer. | |||
2017-04-20 | Allow popup window access to Reveal API | Adam Spiers | |
2017-01-31 | improved fragment notes support #1636 | Hakim El Hattab | |
2017-01-31 | Merge pull request #1636 from traff/master | Hakim El Hattab | |
For a fragment: allow to show a separate note defined in it | |||
2016-09-21 | speaker layouts in server side notes plugin | Hakim El Hattab | |
2016-09-21 | layout selector for speaker view; includes four options | Hakim El Hattab | |
2016-07-04 | For a fragment: allow to show a separate note defined in it | Dmitry 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-10 | Horizontal 2-1 View for the speaker notes instead of a vertical 1-2 | Timothep | |
2016-03-09 | notes plugin no longer syncs overview mode #1446 | Hakim El Hattab | |
2016-03-09 | fix notes regex #1522 #1392 | Hakim El Hattab | |
2016-03-06 | Fix query parameter issue in notes plugin. | Benjamin Tan | |
Closes #1392. | |||
2016-01-08 | code format | Hakim El Hattab | |
2016-01-08 | Merge branch 'patch-1' of https://github.com/danieltdt/reveal.js into dev | Hakim El Hattab | |
2016-01-08 | include speaker view keyboard shortcut when applicable #1466 | Hakim El Hattab | |
2015-10-09 | Fixed #1379 - config keyboard now disables 's' key | rohithpr | |
2015-09-25 | notes defined in data-notes attributes retain preformatted whitespace | Hakim El Hattab | |
2015-04-02 | support query parameters within notes plugin | FND | |
2015-03-05 | Add support for custom notes.html file | Daniel 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-16 | better handling of overflowing speaker notes #1017 | Hakim El Hattab | |
2014-09-28 | prevent auto-sliding in notes frames #1004 | Hakim El Hattab | |
2014-09-27 | dont open notes when S is pressed inside of notes window #991 | Hakim El Hattab | |
2014-05-04 | clicking on notes timer now resets it #779 | Hakim El Hattab | |
2014-04-26 | enable reveal.js keyboard shortcuts anywhere in notes window | Hakim El Hattab | |
2014-04-22 | skip transitions in notes window for better main window performance | Hakim El Hattab | |
2014-04-22 | limit how often the notes window updates presentation states | Hakim El Hattab | |
2014-04-22 | notes code format tweaks | Hakim El Hattab | |
2014-04-22 | dont toggle paused/overview modes needlessly when setting state | Hakim El Hattab | |
2014-04-20 | update style of notes plugin to match Slides | Hakim El Hattab | |
2014-04-19 | notes plugin now operates entirely through window.postMessage, adding ↵ | Hakim El Hattab | |
support for file protocol | |||
2014-02-17 | server side notes plugin now supports input via data-notes attribute | Hakim El Hattab | |
2013-10-22 | configure notes presentation through query string to avoid flicker | Hakim El Hattab | |
2013-09-14 | prevent unintended slide change event | Donald 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-29 | configure notes window presentations to hide needless UI | Hakim El Hattab | |
2013-07-26 | ensure notes window fragment states are mirrored in main window #538 | Hakim El Hattab | |
2013-07-26 | simplify client side notes plugin | Hakim El Hattab | |
2013-06-09 | merge notes timer rounding fix | Hakim El Hattab | |
2013-06-02 | Use Math.floor instead of parseInt to avoid problems with very small numbers ↵ | Thomas Rosenau | |
like 2e-10 | |||
2013-05-05 | merge notes float fix and support for multiple fragments with same index | Hakim El Hattab | |
2013-05-02 | Added clear:left to notes DIV | Nigel 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-01 | Replace the ShowDown Markdown engine with marked | Amit Kotlovski | |
2013-02-27 | update main window when current slide changes in notes (closes #343) | Hakim El Hattab | |
2013-02-06 | merge in notes improvement | hakimel | |
2013-02-06 | find correct path to open html file from the notes.js path | Damjan Georgievski | |
2013-01-26 | merge in timer in notes window, timer now stays hidden until initial time is set | Hakim El Hattab | |
2013-01-26 | Add clock and elapsed time to notes view | Charlie DeTar | |
2013-01-23 | show error when notes run on non-http, fix load order to make sure upcoming ↵ | hakimel | |
slide is correct when notes open (#278) | |||
2013-01-21 | remove debug code | hakimel | |
2013-01-21 | notes window now displays correct slides when origin is different than ↵ | hakimel | |
index.html (closes #278) | |||
2012-11-16 | fix incorrect navigation in notes window (closes #241) | Hakim El Hattab | |
2012-10-28 | remove console.log | Hakim El Hattab | |
2012-10-28 | updated markdown references in notes plugin | Hakim El Hattab | |
2012-10-25 | merge in support for stepped fragments in notes window | Hakim El Hattab | |
2012-10-24 | Delete functionality to control presentation from notes window | Michael Kühnel | |
Its was impossible (at least for me) to keep the windows in sync without bloating the code too much. | |||
2012-10-24 | Delete console output. | Michael Kühnel | |
2012-10-24 | Make the fragments visible in speaker notes | Michael Kühnel | |
2012-10-20 | clean up trailing whitespace (closes #197) | Hakim El Hattab | |
2012-10-20 | new postMessage-based notes plugin, moved node-based notes to notes-server ↵ | Hakim El Hattab | |
(#190) |