diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesWindow.mxml index 4ed2ad86a1..91843e06a2 100644 --- a/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesWindow.mxml +++ b/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesWindow.mxml @@ -105,6 +105,12 @@ BindingUtils.bindSetter(updateRoleDependentProperties, UsersUtil.getMyself(), "role"); updateTitle(); + + if (noteId == "MAIN_WINDOW") { + this.enabled = false; + getDocumentTimer.addEventListener(TimerEvent.TIMER, checkCurrentDocument); + getDocumentTimer.start(); + } } private function gotCurrentDocument():void { @@ -137,9 +143,6 @@ private function updateRoleDependentProperties(role:String):void { if(noteId == "MAIN_WINDOW"){ btnNew.visible = btnNew.includeInLayout = options.enableMultipleNotes && role == Role.MODERATOR; - this.enabled = false; - getDocumentTimer.addEventListener(TimerEvent.TIMER, checkCurrentDocument); - getDocumentTimer.start(); } else { showCloseButton = role == Role.MODERATOR; }