aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* rename markdown tests to use same naming format as other testsHakim El Hattab2013-11-23
|
* respect original dom order of fragments with no explicit indexHakim El Hattab2013-11-21
|
* rewrite fragment index attributes to leave no gaps between fragmentsHakim El Hattab2013-11-21
|
* fragments are now zero-indexedHakim El Hattab2013-11-21
|
* fragment comments, remove debug codeHakim El Hattab2013-11-18
|
* use new fragment nav method from slide()Hakim El Hattab2013-11-18
|
* initial fragment rewriteHakim El Hattab2013-11-18
|
* Merge branch 'feature/more-languages' of https://github.com/haf/reveal.js ↵Hakim El Hattab2013-11-17
|\ | | | | | | into dev
| * supporting same languages as highlight.jsHenrik2013-09-05
| |
* | slide number changes; config value renamed, added to readme, moved to right ↵Hakim El Hattab2013-11-17
| | | | | | | | side of screen
* | merge slide numbers, adjust code formatHakim El Hattab2013-11-17
|\ \
| * | change SlidesNumber position and start page counter at 0 instead 1uriel2013-10-31
| | |
| * | synthetic fixuriel2013-10-31
| | |
| * | move the slide-number out of the controls to a proper position and little ↵uriel2013-10-31
| | | | | | | | | | | | fix to the updating event.
| * | Added slide numbers options and the css files updated as well.uriel2013-10-30
| | | | | | | | | | | | the *.min.js didn't chaged yet.
* | | make background transition default to exact same speed as normal transitionsHakim El Hattab2013-11-09
| | |
* | | change transition easing for zoomsHakim El Hattab2013-11-08
| | |
* | | rebuild css with change from #691Hakim El Hattab2013-11-08
| | |
* | | define normal font widths in all themes to make sure things look the same ↵Hakim El Hattab2013-11-08
| | | | | | | | | | | | after #691
* | | Merge pull request #691 from fghaas/section-fontweightHakim El Hattab2013-11-07
|\ \ \ | | | | | | | | CSS: Don't override font-weight for section
| * | | CSS: Don't override font-weight for sectionFlorian Haas2013-11-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | .slides>section and .slides>section>section set the font-weight to "normal". This overrides any font-weight setting a theme may set at the body or .reveal level, and requires a theme author to also specifically set the font-weight for .slides>section and .slides>section>section. That's tedious and also counterintuitive. Adopt a saner default by setting the font-weight to inherit.
* | | | remove old inaccurate commentHakim El Hattab2013-11-07
| | | |
* | | | commentsHakim El Hattab2013-11-07
| | | |
* | | | data-autoslide on vertical parent now applies to all child slides #685Hakim El Hattab2013-11-07
| | | |
* | | | ensure that all fragments on past slides are visible #684Hakim El Hattab2013-11-07
| | | |
* | | | add code slide to markdown example #682Hakim El Hattab2013-11-07
| | | |
* | | | readme adjustmentHakim El Hattab2013-11-06
| | | |
* | | | Add slide attributes for single slide section case.VonC2013-11-06
| | | |
* | | | Add mardown-based slide attribute examples.VonC2013-11-04
| | | |
* | | | Add unit test for default slide attributes separator pattern.VonC2013-11-04
| | | |
* | | | Remove console.log debugs, and fix tabsVonC2013-11-04
| | | |
* | | | Fix default separator pattern for attribute in slide.VonC2013-11-04
| | | |
* | | | Restore default notation for attributes in element.VonC2013-11-04
| | | | | | | | | | | | | | | | | | | | | | | | It should be `{. xxxx=yyy }`, not `{_ xxxx=yyy }`. Only test/test-element-attributes-markdown.html were using `{_`, simply in order to test the ability, for the user, to define a _different_ pattern.
* | | | Restore proper pattern for attributes in elements.VonC2013-11-04
| | | | | | | | | | | | | | | | | | | | It is important that test/test-element-attributes-markdown.html do test the ability for the user to define its own pattern.
* | | | Add QUnit.js unit tests for attributes in Markdown slides.VonC2013-11-04
| | | |
* | | | Fix markdown.js slideAttributesSeparator selection.VonC2013-11-04
| | | |
* | | | Rebased on dev, and following contribution guideline.VonC2013-11-04
| | | |
* | | | Fix markdown vertical wrapping section element generation.VonC2013-11-04
| | | |
* | | | Make sure a pattern doesn't include space.VonC2013-11-04
| | | |
* | | | Fix bug on data attributes for first vertical slide.VonC2013-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The first slide of a vertical stack see some data attributes ignored. Mainly the data-transition one. Repeat all data-attributes on the wrapping section element. Ignore any other attributes (like 'id="xxx"'), in order to not mess with internal links (by repeating twice an id).
* | | | Add attributes in markdown for slide generation.VonC2013-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By default, look for <!-- slide-attributes: xxxx -->. Whatever 'xxx' is will be added to the section attributes. You can define your own pattern with 'data-attributes'. For instance 'data-attributes="^\s*?-- (.*?)$"': that will be added to the options. The 'attributes' section is removed from the content of the slide, so the final markdown doesn't reflect them. That also means you can add those attributes *anywhere* in the slide But that allows for *any* attribute to be added for a specifc slide, like: - id="plan", for allowing internal link (issue #430) - data-background="#ff0000" - data-transition="fade" You list those attributes on a single line, like - (default): ` <!-- id="plan" data-background="#ff0000" -->` - or, with an alternative data-attributes pattern: ` -- id="plan" data-background="#ff0000"` Again, that line is remove from the final content.
* | | | add concave and zoom background transitionsHakim El Hattab2013-11-04
| | | |
* | | | add convex background transitionHakim El Hattab2013-11-01
| | | |
* | | | generate background hash under additional conditionsHakim El Hattab2013-11-01
| | | |
* | | | fix edge case in background transitions (closes #604)Hakim El Hattab2013-10-30
| | | |
* | | | don't transition between identical backgroundsHakim El Hattab2013-10-30
| | | |
* | | | documentation for #677Hakim El Hattab2013-10-28
| | | |
* | | | format tweaks markdown.js, remove extra image assetHakim El Hattab2013-10-28
| | | |
* | | | Merge branch 'classes_in_markdown' of https://github.com/VonC/reveal.js into devHakim El Hattab2013-10-28
|\ \ \ \
| * | | | Add unit-tests for attributes in mardown elements.VonC2013-10-27
| | | | | | | | | | | | | | | | | | | | Test paragraphs, list items and img attributes.