Merge pull request #2574 from christian-classics-ethereal-library/getComputedSlideSize
API: Expose getComputedSlideSize so plugin developers can get width and height.
This commit is contained in:
commit
a2155e4fde
@ -682,6 +682,8 @@ Reveal.getConfig();
|
|||||||
// Fetch the current scale of the presentation
|
// Fetch the current scale of the presentation
|
||||||
Reveal.getScale();
|
Reveal.getScale();
|
||||||
|
|
||||||
|
Reveal.getComputedSlideSize(); // Returns object with width, height keys, and (scaled) presentationWidth and presentationHeight.
|
||||||
|
|
||||||
// Retrieves the previous and current slide elements
|
// Retrieves the previous and current slide elements
|
||||||
Reveal.getPreviousSlide();
|
Reveal.getPreviousSlide();
|
||||||
Reveal.getCurrentSlide();
|
Reveal.getCurrentSlide();
|
||||||
|
@ -6576,6 +6576,7 @@
|
|||||||
getScale: function() {
|
getScale: function() {
|
||||||
return scale;
|
return scale;
|
||||||
},
|
},
|
||||||
|
getComputedSlideSize: getComputedSlideSize,
|
||||||
|
|
||||||
// Returns the current configuration object
|
// Returns the current configuration object
|
||||||
getConfig: function() {
|
getConfig: function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user