Skip to content

Commit

Permalink
1.0.8-rc2: Make sure default value for the asyncmode parameter works …
Browse files Browse the repository at this point in the history
…in setMeetingInfo
  • Loading branch information
jfederico committed Dec 24, 2014
1 parent 52005f4 commit 297c311
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bbb-tool/tool/src/webapp/js/bbb_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,9 @@ var BBBUtils;
}

// Get meeting info from BBB server
BBBUtils.setMeetingInfo = function(meeting, asyncmode=true) {
BBBUtils.setMeetingInfo = function(meeting, asyncmode) {
if(typeof(asyncmode)==='undefined') asyncmode = true;

var meetingInfo = null;
jQuery.ajax( {
url : "/direct/bbb-tool/" + meeting.id + "/getMeetingInfo.json",
Expand Down

0 comments on commit 297c311

Please sign in to comment.