Skip to content
Snippets Groups Projects
Commit a6759a81 authored by Richard Alam's avatar Richard Alam
Browse files
parent bd05827f
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
import org.bigbluebutton.modules.present.managers.Slide;
import org.bigbluebutton.modules.present.ui.views.models.SlideCalcUtil;
import org.bigbluebutton.modules.present.ui.views.models.SlideViewModel;
import org.bigbluebutton.util.i18n.ResourceUtil;
import org.bigbluebutton.util.i18n.ResourceUtil;
[Bindable] public var zoomPercentage:Number = 100;
public static const ZOOM_STEP:int = 5;
......@@ -94,7 +94,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
private var whiteboardCanvasHolder:Canvas = new Canvas();
private var whiteboardCanvas:IBbbCanvas;
[Bindable] public var slides:ArrayCollection;
[Bindable] public var slides:ArrayCollection = new ArrayCollection();
[Bindable] public var selectedSlide:int=0;
[Bindable] private var lateComerSynched:Boolean = false;
......
......@@ -41,7 +41,11 @@ package org.bigbluebutton.modules.whiteboard.models
}
public function getAnnotation(id:String):Annotation {
if (_currentPage != null) {
return _currentPage.getAnnotation(id);
}
return null;
}
private function createPages(numPages:int):void {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment