diff options
author | Hakim El Hattab | 2014-09-09 17:33:52 +0200 |
---|---|---|
committer | Hakim El Hattab | 2014-09-09 17:33:52 +0200 |
commit | 2479883d3cdec0a810f95e4fe80696877e5ae227 (patch) | |
tree | 4763ef4c8385bbe64422e1ed978952f5ebf5d590 /js | |
parent | 5e585ddbf2f3f9514f1db11ccb250eca02fb6878 (diff) |
is-light-background -> has-light-background, doesn't apply to background itself
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index 24093e4..ca0dde6 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -720,8 +720,7 @@ // signals if it is light var computedBackgroundColor = window.getComputedStyle( element ).backgroundColor; if( computedBackgroundColor && colorBrightness( computedBackgroundColor ) > 128 ) { - slide.classList.add( 'is-background-light' ); - element.classList.add( 'is-background-light' ); + slide.classList.add( 'has-light-background' ); } return element; |