aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-11-01 12:27:09 -0400
committerHakim El Hattab2013-11-01 12:27:09 -0400
commit778969c0002f140d699a86fe9bcd7f375f8d3087 (patch)
tree78f5a3ea0bd4c13127fc27ef7ffcc409bbccb65d /js/reveal.js
parentfcf91ec261db85f0c0e1feca1972505dd687fc3e (diff)
generate background hash under additional conditions
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 9218ea9..b4633ed 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -457,7 +457,9 @@ var Reveal = (function(){
else {
element.style.background = data.background;
}
+ }
+ if( data.background || data.backgroundColor || data.backgroundImage ) {
element.setAttribute( 'data-background-hash', data.background + data.backgroundSize + data.backgroundImage + data.backgroundColor + data.backgroundRepeat + data.backgroundPosition + data.backgroundTransition );
}