Automated attending js keeps checking if BBB session has started if session is required to have a moderator before users are let in. Once session is running, attendants are redirected.
Due to D7 JS API change automated this js-code is broken and BBB api call was also directed to api-[API].bbb.inc -file, which did not exist.
Both issues are fixed here and now JS code works.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | bbb_automated_attend_to_js_broken-2045613-4.patch | 1.45 KB | Chipie |
| #1 | bbb_automated_attend_to_js_broken-2045613-1.patch | 1.19 KB | rpsu |
Comments
Comment #1
rpsupatch file.
Comment #2
rpsuComment #3
Chipie commentedThank you for your patch.
I have applied your patch, but the attendee is not redirected, when the session is redirected. Any ideas?
Comment #4
Chipie commentedI have wrapped the js script with
(function($) {
...
})(jQuery);
in order to have a high compatibility with other javascript libraries.
Comment #5
Chipie commenteddeployed to latest dev.
Comment #6
jvieille commentedThis never worked for me (using D6)
I decided to tackle this issue and finally got it working
The script in D6 is wrapped in (function($) { .. })(jQuery); in the current dev (the D6 beta release does not work at all).
This does not seem to work for D6, probably only for D7.
I reverted back the js file to the original one and modified the "is_running" veriable by "running".
So in D6, replace in check_status.bbb.js
by
Hope this helps
Comment #7
amstel commented#6 worked for me as well in latest Drupal 6 dev version. Thanks!