aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin
AgeCommit message (Collapse)Author
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-08Cleanup code style.Benjamin Tan
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-12-01Merge pull request #2045 from jgm/issue2026Hakim El Hattab
Allow tex2jax options to be passed into math plugin.
2017-11-29Allow tex2jax options to be passed into math plugin.John MacFarlane
Closes #2026. This does not change the default behavior of the math plugin, but it allows $ delimiters to be disabled (which is usually what you want, since otherwise normal uses of $ for currency get treated as math delimiters). To use: Reveal.initialize({ math: { tex2jax: { inlineMath: [['\\(','\\)']], skipTags: ['script','noscript','style', 'textarea','pre'] } }, etc. });
2017-11-29Merge branch 'plugin-key-bindings' of https://github.com/denehyg/reveal.js ↵Hakim El Hattab
into dev
2017-11-23add inline and external markdown images to example #2039Hakim El Hattab
2017-11-22lab.hakim.se/reveal-js -> revealjs.comHakim El Hattab
2017-11-05Register search key shortcut for help overlayJens Lechtenbörger
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-06-19zoom.js works on main wrapper elementHakim El Hattab
2017-06-19zoom.js uses ctrl+click for linux, alt+click for others #1909Hakim El Hattab
2017-06-19simplify point zoom, switch back to alt + click shortcut for os x support #1909Hakim El Hattab
2017-06-19clear existing matches when searching for empty string #1909Hakim El Hattab
2017-06-19Merge branch 'master' of https://github.com/linux-man/reveal.js into devHakim El Hattab
2017-06-12change event listener syntax #1917Hakim El Hattab
2017-06-12Merge branch 'issue1896' of https://github.com/OleMussmann/reveal.js into devHakim El Hattab
2017-06-07alias 'notes:' alias for md speaker note separator #1913Hakim El Hattab
2017-06-06patch to allow multiplexing on URL loadOle Mussmann
2017-05-22highlight.js 9.0.0 -> 9.11.0Hakim El Hattab
2017-05-21Remove commentlinux-man
2017-05-21Modified Zoomlinux-man
Block dimension calculation is not accurate, so zoom is made on mouse coordinates Change default modifier to ctrl - alt don't work on Linux New parameter zoomLevel: default 2
2017-05-21Better Searchlinux-man
Open/close with Control+Shift+f Find words inside SPAN Don't duplicate findings
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-04-07Merge pull request #1843 from riezebosch/pdf-print-callbackHakim El Hattab
print-pdf using callback iso timer
2017-04-05replace cdn.mathjax.org with cdnjsChristian Lawson-Perfect
cdn.mathjax.org is shutting down: https://www.mathjax.org/cdn-shutting-down/ This changes the default MathJax URL in the math plugin, as well as references in README.md and test/examples/math.html
2017-03-14print-pdf using callback iso timerManuel Riezebosch
Use window.callPhantom icw page. onCallback to wait for pdf-ready event. From: http://stackoverflow.com/a/28925479/129269
2017-02-15phantom export throws error if reveal.js isn't presentHakim El Hattab
2017-02-15Merge branch 'master' of github.com:hakimel/reveal.js into devHakim El Hattab
2017-02-15new phantom pdf export script that works with 3.4.0 #1815Hakim El Hattab
2017-01-31improved fragment notes support #1636Hakim El Hattab
2017-01-31Merge branch 'master' of github.com:hakimel/reveal.js into devHakim 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
2017-01-31fix markdown typo, update comment #1780Hakim El Hattab
2017-01-31Merge branch 'patch-2' of https://github.com/ccqgithub/reveal.js into devHakim El Hattab
2016-12-23support complex markdownSeason Chen
support <textarea data-template> `some code` </textarea>
2016-12-08Enable passing options for parsing Markdown.Benjamin Tan
Closes #1163, #1495.
2016-12-01Merge pull request #1756 from jmpp/better-data-trimHakim El Hattab
Implementing a better data-trim
2016-11-22Better version of data-trim on code snippetsJ.M. Cléry
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-22Merge branch 'bug/markdownSetOptions' of https://github.com/snowyu/reveal.js ↵Hakim El Hattab
into dev
2016-06-10Merge branch 'Timothep-master' into devHakim El Hattab
2016-06-10Horizontal 2-1 View for the speaker notes instead of a vertical 1-2Timothep
2016-04-29tweak formatting to match rest of slideHakim El Hattab
2016-04-26More natural zooming on block level elementsJess Telford
Switching a `display: block` element to `display: inline-block` allows calculating the bounds based on the contents of the div rather than the entire container (which is often `width: 100%`). This provides a much more natural zoom, especially for paragraphs and code examples.
2016-04-07support for standalone multiplexingHakim El Hattab
2016-03-09server notes plugin no longer syncs overview mode #1446Hakim El Hattab
2016-03-09notes plugin no longer syncs overview mode #1446Hakim El Hattab
2016-03-09fix notes regex #1522 #1392Hakim El Hattab
2016-03-07Merge pull request #1522 from demoneaux/notes-fixHakim El Hattab
Fix query parameter issue in notes plugin.
2016-03-06Fix query parameter issue in notes plugin.Benjamin Tan
Closes #1392.
2016-03-06Remove unused dependencies.Benjamin Tan
2016-01-11Merge branch 'jetzhliu-patch-1' of https://github.com/jetzhliu/reveal.js ↵Hakim El Hattab
into dev
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-08same code formatHakim El Hattab
2016-01-08Merge branch 'patch-2' of https://github.com/teawithfruit/reveal.js into devHakim El Hattab
2016-01-08include speaker view keyboard shortcut when applicable #1466Hakim El Hattab
2016-01-04Merge branch 'master' of github.com:hakimel/reveal.js into devHakim El Hattab
2015-12-27Fix spelling error in print-pdf pluginIan Smith
2015-12-14update to highlight.js 9.0.0Hakim El Hattab
2015-11-11* [bug] the markdown plugin can not render highlight codes for ↵Riceball LEE
marked.setOptions(highlight)
2015-11-10* update marked.js version to 0.3.5Riceball LEE
2015-11-09Merge pull request #1391 from rohithpr/notes-key-bindingHakim El Hattab
Fixed #1379 - config keyboard now disables 's' key
2015-11-09update highlight.js 8.6 -> 8.9.1 #1385Hakim El Hattab
2015-11-09server notes sync slide changes both ways, fixes #1425Hakim El Hattab
2015-11-02fixed loadingteawithfruit
2015-10-26remove remotes.io plugin, service no longer exists #1411Hakim El Hattab
2015-10-19format note content when creating slideLiu Zhanhong
In html content, marked allow `Inline-Level Grammar` but not `Block-Level Grammar`, so when I write following: ``` note: * a * b * c ``` it become: ```html <p><em> a </em> b</p> <ul> <li>c</li> </ul> ``` unbelievable!
2015-10-09Fixed #1379 - config keyboard now disables 's' keyrohithpr
2015-09-29multiplexing work with socket.io 1.0+ #1281 #1276Hakim El Hattab
2015-09-29speaker notes work with socket.io 1.0 #1375Hakim El Hattab
2015-09-25notes defined in data-notes attributes retain preformatted whitespaceHakim El Hattab
2015-07-07tweaks for #1200Hakim El Hattab
2015-07-07Merge branch 'master' of https://github.com/bfritscher/reveal.js into devHakim El Hattab
2015-07-07Merge pull request #1205 from gothma/mathjax-mdHakim El Hattab
Allow tex parsing in <code> tags
2015-06-25Merge branch 'master' of github.com:hakimel/reveal.js into devHakim El Hattab
2015-06-25Merge pull request #1250 from kfuglsang/highlightjs-86Hakim El Hattab
Updated to Highlightjs 8.6 with all languages supported.
2015-06-15Removed leap motion plugin from main projectRC028552
2015-06-10Allows to specify PORT from env on multiplex pluginpierreozoux
2015-06-02Updated to Highlightjs 8.6 with all languages supported.Kenneth Fuglsang
2015-04-16Allow tex parsing in <code> tagsMartin Goth
Just using $ as delimiter in markdown document fails since the markdown parser unknown to the dollar syntax will try to interpret underscores. Putting the $ delimented formula in backticks will cause the markdown parser to put the tex-code with the $ delimiters into a code block. The texcode will then be unchanged. This patch allows for mathJax to interpret and automagically display the tex-formulas.
2015-04-12Merge branch 'query-params' of https://github.com/FND/reveal.js into devHakim El Hattab