فهرست منبع

fix retrieval of computed styles in ff

Hakim El Hattab 10 سال پیش
والد
کامیت
3c5f3ee048
2فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 4 4
      js/reveal.js
  2. 1 1
      js/reveal.min.js

+ 4 - 4
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 );
 
 		}
 

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 1
js/reveal.min.js


برخی فایل ها در این مقایسه diff نمایش داده نمی شوند زیرا تعداد فایل ها بسیار زیاد است