Sfoglia il codice sorgente

remove extra padding in stacks, add api method to retrieve curren scale (#310)

Hakim El Hattab 11 anni fa
parent
commit
c50ae08fe0
4 ha cambiato i file con 15 aggiunte e 2 eliminazioni
  1. 5 0
      css/reveal.css
  2. 0 0
      css/reveal.min.css
  3. 9 1
      js/reveal.js
  4. 1 1
      js/reveal.min.js

+ 5 - 0
css/reveal.css

@@ -592,6 +592,11 @@ body {
 	top: -50%;
 }
 
+.reveal .slides>section.stack {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+
 .reveal .slides>section.present,
 .reveal .slides>section>section.present {
 	display: block;

File diff suppressed because it is too large
+ 0 - 0
css/reveal.min.css


+ 9 - 1
js/reveal.js

@@ -94,6 +94,9 @@ var Reveal = (function(){
 		// all current slides.
 		state = [],
 
+		// The current scale of the presentation (see width/height config)
+		scale = 1,
+
 		// Cached references to DOM elements
 		dom = {},
 
@@ -591,7 +594,7 @@ var Reveal = (function(){
 		dom.slides.style.height = slideHeight + 'px';
 
 		// Determine scale of content to fit within available space
-		var scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
+		scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
 
 		// Respect max/min scale settings
 		scale = Math.max( scale, config.minScale );
@@ -1835,6 +1838,11 @@ var Reveal = (function(){
 			return currentSlide;
 		},
 
+		// Returns the current scale of the presentation content
+		getScale: function() {
+			return scale;
+		},
+
 		// Helper method, retrieves query string as a key/value hash
 		getQueryHash: function() {
 			var query = {};

File diff suppressed because it is too large
+ 1 - 1
js/reveal.min.js


Some files were not shown because too many files changed in this diff