bigbluebutton-Github/bigbluebutton-html5/imports/api/slides/server/methods.js
germanocaumo 217fd6c06e fix(tldraw): wrong initial/viewer zoom
Fixes a case when the presentation is just uploaded and a wrong initial zoom was set.
Also fix viewer zoom not correclty adjusting to the area size when zoomed out.
2022-07-08 15:06:00 +00:00

9 lines
184 B
JavaScript

import { Meteor } from 'meteor/meteor';
import switchSlide from './methods/switchSlide';
import zoomSlide from './methods/zoomSlide';
Meteor.methods({
switchSlide,
zoomSlide,
});