From 015468c3a2d1d4092f33920ac555a0e288e6213f Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Mon, 17 Feb 2014 21:15:02 +0100 Subject: renamed markdown attributes for clarity and consistency: data-vertical -> data-separator-vertical, data-notes -> data-separator-notes --- test/test-markdown-element-attributes.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/test-markdown-element-attributes.html') diff --git a/test/test-markdown-element-attributes.html b/test/test-markdown-element-attributes.html index b638082..27b888c 100644 --- a/test/test-markdown-element-attributes.html +++ b/test/test-markdown-element-attributes.html @@ -19,10 +19,10 @@
- + -
> +
> - + + - + - + - + - + diff --git a/test/test-markdown-slide-attributes.html b/test/test-markdown-slide-attributes.html index bd7b28f..ab6ece4 100644 --- a/test/test-markdown-slide-attributes.html +++ b/test/test-markdown-slide-attributes.html @@ -6,7 +6,7 @@ reveal.js - Test Markdown Attributes - + @@ -117,7 +117,7 @@
- + diff --git a/test/test-markdown.html b/test/test-markdown.html index 901b2de..7ff0efe 100644 --- a/test/test-markdown.html +++ b/test/test-markdown.html @@ -6,7 +6,7 @@ reveal.js - Test Markdown - + @@ -41,7 +41,7 @@ - + diff --git a/test/test.html b/test/test.html index 094f3c7..aa233c8 100644 --- a/test/test.html +++ b/test/test.html @@ -6,7 +6,7 @@ reveal.js - Tests - + @@ -72,7 +72,7 @@ - + -- cgit v1.2.3 From 4e3b91ae03da5a82be4e221dae5c3aa45401359d Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Sun, 12 Apr 2015 18:12:48 +0200 Subject: remove 'roll-in' fragment style due to Chrome crash #1150 --- README.md | 1 - css/reveal.css | 8 -------- css/reveal.scss | 8 -------- index.html | 1 - test/test-markdown-element-attributes.html | 6 +++--- 5 files changed, 3 insertions(+), 21 deletions(-) (limited to 'test/test-markdown-element-attributes.html') diff --git a/README.md b/README.md index ba71b27..1f286a1 100644 --- a/README.md +++ b/README.md @@ -515,7 +515,6 @@ The default fragment style is to start out invisible and fade in. This style can

grow

shrink

-

roll-in

fade-out

visible only once

blue only once

diff --git a/css/reveal.css b/css/reveal.css index 8bbe38c..6127a5b 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -70,14 +70,6 @@ body { -ms-transform: none; transform: none; } -.reveal .slides section .fragment.roll-in { - -webkit-transform: rotateX(60deg); - transform: rotateX(60deg); } - .reveal .slides section .fragment.roll-in.visible { - -webkit-transform: none; - -ms-transform: none; - transform: none; } - .reveal .slides section .fragment.fade-out { opacity: 1; visibility: visible; } diff --git a/css/reveal.scss b/css/reveal.scss index dd7cc75..2ec75e9 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -99,14 +99,6 @@ body { } } -.reveal .slides section .fragment.roll-in { - transform: rotateX( 60deg ); - - &.visible { - transform: none; - } -} - .reveal .slides section .fragment.fade-out { opacity: 1; visibility: visible; diff --git a/index.html b/index.html index f82778d..d4adcf6 100644 --- a/index.html +++ b/index.html @@ -138,7 +138,6 @@

There's different types of fragments, like:

grow

shrink

-

roll-in

fade-out

current-visible

highlight-red

diff --git a/test/test-markdown-element-attributes.html b/test/test-markdown-element-attributes.html index 5dba085..fd44cd2 100644 --- a/test/test-markdown-element-attributes.html +++ b/test/test-markdown-element-attributes.html @@ -38,9 +38,9 @@ Paragraph 2 - - list item 1 - - list item 2 - - list item 3 + - list item 1 + - list item 2 + - list item 3 --- -- cgit v1.2.3 From 7f55e07f85f69443e23fc3d46c55f44a75e29afe Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Sun, 12 Apr 2015 18:22:33 +0200 Subject: fix markdown test --- test/test-markdown-element-attributes.html | 6 +++--- test/test-markdown-element-attributes.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'test/test-markdown-element-attributes.html') diff --git a/test/test-markdown-element-attributes.html b/test/test-markdown-element-attributes.html index fd44cd2..6edf95e 100644 --- a/test/test-markdown-element-attributes.html +++ b/test/test-markdown-element-attributes.html @@ -38,9 +38,9 @@ Paragraph 2 - - list item 1 - - list item 2 - - list item 3 + - list item 1 + - list item 2 + - list item 3 --- diff --git a/test/test-markdown-element-attributes.js b/test/test-markdown-element-attributes.js index 4541077..10a2503 100644 --- a/test/test-markdown-element-attributes.js +++ b/test/test-markdown-element-attributes.js @@ -19,7 +19,7 @@ Reveal.addEventListener( 'ready', function() { }); test( 'Attributes on element list items in vertical slides', function() { - strictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.roll-in' ).length, 3, 'found a vertical slide with three list items with class fragment.roll-in' ); + strictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' ); }); test( 'Attributes on element paragraphs in horizontal slides', function() { -- cgit v1.2.3