Pārlūkot izejas kodu

Merge pull request #2574 from christian-classics-ethereal-library/getComputedSlideSize

API: Expose getComputedSlideSize so plugin developers can get width and height.
Hakim El Hattab 5 gadi atpakaļ
vecāks
revīzija
a2155e4fde
2 mainītis faili ar 3 papildinājumiem un 0 dzēšanām
  1. 2 0
      README.md
  2. 1 0
      js/reveal.js

+ 2 - 0
README.md

@@ -682,6 +682,8 @@ Reveal.getConfig();
 // Fetch the current scale of the presentation
 Reveal.getScale();
 
+Reveal.getComputedSlideSize(); // Returns object with width, height keys, and (scaled) presentationWidth and presentationHeight.
+
 // Retrieves the previous and current slide elements
 Reveal.getPreviousSlide();
 Reveal.getCurrentSlide();

+ 1 - 0
js/reveal.js

@@ -6576,6 +6576,7 @@
 		getScale: function() {
 			return scale;
 		},
+		getComputedSlideSize: getComputedSlideSize,
 
 		// Returns the current configuration object
 		getConfig: function() {