aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-08-17 12:15:55 -0400
committerHakim El Hattab2013-08-17 12:15:55 -0400
commit3c5f3ee048b826f45844173f2ebcc1285263583c (patch)
tree67dca61231f7bf6db11090c5b5f5ef1fb447bd53 /js/reveal.js
parent0239302f450d94f4ca14dd09c166a0a03456ee98 (diff)
fix retrieval of computed styles in ff
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 53428aa..cf9df15 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -743,8 +743,8 @@ var Reveal = (function(){
if( typeof sibling.offsetHeight === 'number' && sibling !== element ) {
var styles = window.getComputedStyle( sibling ),
- marginTop = parseInt( styles[ 'margin-top' ], 10 ),
- marginBottom = parseInt( styles[ 'margin-bottom' ], 10 );
+ marginTop = parseInt( styles.marginTop, 10 ),
+ marginBottom = parseInt( styles.marginBottom, 10 );
height -= sibling.offsetHeight + marginTop + marginBottom;
@@ -755,8 +755,8 @@ var Reveal = (function(){
var elementStyles = window.getComputedStyle( element );
// Subtract the margins of the target element
- height -= parseInt( elementStyles[ 'margin-top' ], 10 ) +
- parseInt( elementStyles[ 'margin-bottom' ], 10 );
+ height -= parseInt( elementStyles.marginTop, 10 ) +
+ parseInt( elementStyles.marginBottom, 10 );
}