Commit Graph

4552 Commits

Author SHA1 Message Date
Chad Pilkey
3245934d15 prevent enter from going into the input box 2015-03-27 14:33:15 -07:00
Chad Pilkey
3b5ab7cbbe improved the chat url regex 2015-03-27 14:32:27 -07:00
Felipe Cecagno
f23ece0e37 Merge branch 'webrtc-timeout' into mconf-live0.6.2 2015-03-26 15:54:34 -03:00
Felipe Cecagno
cef741937b improved the way we calculate the dimension of the cancel button in the audio test dialog 2015-03-26 15:50:51 -03:00
Pedro Beschorner Marin
a2d7f43130 Added a config option to enable/disable WebRTC audio connection browser's hints 2015-03-26 12:38:43 -03:00
Richard Alam
c63c371e7b - fix issue https://code.google.com/p/bigbluebutton/issues/detail?id=1909 2015-03-25 21:58:09 -03:00
Richard Alam
2a0786d19c Merge branch 'master' of https://github.com/bigbluebutton/bigbluebutton into fix-issue-1909 2015-03-25 21:15:20 +00:00
Richard Alam
315ac0688c - fix issue https://code.google.com/p/bigbluebutton/issues/detail?id=1909 2015-03-25 21:14:48 +00:00
Chad Pilkey
4814fe65a2 annotations now follow the mouse if it leaves the WhiteboardCanvas 2015-03-25 14:08:51 -07:00
Chad Pilkey
056f880a53 add URL parsing to private chat messages 2015-03-25 14:06:03 -07:00
Chad Pilkey
f7a99342b5 increase webrtc transfer timeout 2015-03-25 14:05:26 -07:00
Mateus Dalepiane
7a0e75ace3 Merge branch 'mdalepiane/reconnect-webrtc' into mconf-live0.6.2 2015-03-25 12:10:04 -03:00
Richard Alam
3f4bec3333 Merge pull request #585 from capilkey/fix-three-whiteboard-bugs
Fix some whiteboard annoyances
2015-03-25 10:11:01 -04:00
Chad Pilkey
7431f5186f reworked the pan and zoom so it breaks way less 2015-03-24 16:58:18 -07:00
Mateus Dalepiane
6b33495158 Auto re-connection for WebRTC calls on client
The client tries to reconnect 3 times before failing and asking if
the user wants to use flash audio or cancel.
2015-03-24 15:37:43 -03:00
Mateus Dalepiane
2d14eaf531 Fix WebRTC user agent callbacks
This applies to connect and disconnect websocket events.
2015-03-24 12:51:31 -03:00
Richard Alam
afa579b43e - comment out trace logs to minimize noise 2015-03-23 22:38:50 +00:00
Richard Alam
bd4b95b0af - fix https://code.google.com/p/bigbluebutton/issues/detail?id=1849 2015-03-23 22:28:28 +00:00
Chad Pilkey
80f44e5f21 switch from custom pop-up menu to modified combo box 2015-03-23 15:11:49 -07:00
Chad Pilkey
7a7619c311 avoid drawing the text tool input area outside the presentation bounds 2015-03-23 15:09:33 -07:00
Chad Pilkey
981d7c4d39 disable mouse input on the text annotations 2015-03-23 15:08:14 -07:00
Chad Pilkey
2423d934df remove unused TextDrawObject class, the real one is TextObject 2015-03-23 14:34:21 -07:00
Chad Pilkey
d8a3325337 moved 'Ready' text to locales 2015-03-23 14:33:16 -07:00
Richard Alam
1bc477e297 - pass external meeting id in client logs 2015-03-23 19:41:45 +00:00
Felipe Cecagno
2df21ae7e2 Merge branch 'webrtc-timeout' into mconf-live0.6.2 2015-03-21 12:38:39 -03:00
Felipe Cecagno
3c307490ef fixed the cancel button visibility when it take a while to enable webrtc but eventually it worked, so the next time the connecting window is presented, the cancel button should be hidden again instead of remain visible
to test it, apply this patch:

diff --git a/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js b/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
index b9b35bb..f497afa 100755
--- a/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
+++ b/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
@@ -33,7 +33,7 @@ function joinWebRTCVoiceConference() {
                                BBB.webRTCConferenceCallEnded();
                                break;
                        case 'started':
-                               BBB.webRTCConferenceCallStarted();
+                               setTimeout(function() { BBB.webRTCConferenceCallStarted(); }, 15000);
                                break;
                        case 'connecting':
                                BBB.webRTCConferenceCallConnecting();
@@ -79,7 +79,7 @@ function startWebRTCAudioTest(){
                                BBB.webRTCEchoTestEnded();
                                break;
                        case 'started':
-                               BBB.webRTCEchoTestStarted();
+                               setTimeout(function() { BBB.webRTCEchoTestStarted(); }, 15000);
                                break;
                        case 'connecting':
                                BBB.webRTCEchoTestConnecting();
2015-03-21 12:38:08 -03:00
Mateus Dalepiane
0a350a4ceb Client auto reconnection with bbb-voice
The client reconnects automatically with bbb-voice if the connection
drops. Also, implemented mechanisms for auto reconnection of listen
only audio, but these are disabled because currently there is no way
to ensure that bbb-apps connection is already re-established.
2015-03-20 17:21:50 -03:00
Felipe Cecagno
bba8dfd553 Merge branch 'webrtc-timeout' into mconf-live0.6.2 2015-03-20 17:18:46 -03:00
Felipe Cecagno
2de9adafb8 change webrtc timeout to 60 seconds, and show the cancel button after 5 seconds trying to connect 2015-03-20 17:18:29 -03:00
Mateus Dalepiane
cfbf739c01 Improve connection events handling in client voice
NetConnection events Failed and Disconnected now trigger a
FlashLeftVoiceConferenceEvent and reset the module to the
initial state.
2015-03-20 14:29:36 -03:00
Chad Pilkey
6bd3c4d1f4 Merge pull request #570 from BBBManager/bbb-lock-settings
Bbb lock settings
2015-03-20 13:09:17 -04:00
Mateus Dalepiane
d5e79788a6 Clean client users list when it connects to bbb-apps
The list must be cleaned in case of re-connection, so the client
will have the most recent information about users.
2015-03-20 14:04:28 -03:00
Mateus Dalepiane
246db98916 Fix indentation at AutoReconnect.as 2015-03-19 12:47:19 -03:00
Mateus Dalepiane
9ea7b3a7cb Move video NetStream creation to publish method
The NetStream is not used until the client start publishing video,
therefore the NetStream creation may be delayed.

Also, removed redundant code on NetConnection closed handler. The
StopBroadcastEvent triggers the execution of stopBroadcasting(),
that does exactly the same thing.
2015-03-19 12:30:20 -03:00
Felipe Cecagno
a06efd5490 setting back VideoProxy and VideoWindow to use Windows line ending (¬¬) 2015-03-19 12:02:57 -03:00
Felipe Cecagno
867e9b9b36 first attempt to use an auto-reconnection handler, still not working properly 2015-03-19 11:54:08 -03:00
Fred Dixon
c4d50d59dc Merge pull request #574 from capilkey/add-ready-notification
Added a 'ready' notification when the client starts up for screen readers
2015-03-18 19:53:09 -04:00
Fred Dixon
b214de3d2c Merge pull request #575 from capilkey/fix-webrtc-null-errors
check for null before calling UA.stop()
2015-03-18 19:52:57 -04:00
Chad Pilkey
afb5787941 check for null before calling UA.stop() 2015-03-18 15:36:29 -07:00
Chad Pilkey
c5e0436204 added a 'ready' notification when the client starts up for screen readers 2015-03-18 14:21:01 -07:00
Pedro Beschorner Marin
7372d12e51 Added a timeout cancel button in WebRTC audio connection 2015-03-18 16:59:26 -03:00
Richard Alam
acc58d250f - lower log level when not able to load html5 client 2015-03-18 18:19:55 +00:00
Tiago Daniel Jacobs
8b429dcaa6 Process lock event for all users to make the UI consistent. 2015-03-16 20:44:27 +00:00
Tiago Daniel Jacobs
44e387b2dd Merge remote-tracking branch 'bbboficial/master' into bbb-lock-settings 2015-03-16 20:04:32 +00:00
Tiago Daniel Jacobs
64e72e9934 Fixed visibility of viewers locked label for a empty room with lockOnJoin false. 2015-03-16 20:03:56 +00:00
Tiago Daniel Jacobs
3c5ba8c5b9 Changing template to include the muteOnStart option 2015-03-16 18:06:41 +00:00
Richard Alam
3c73519ec3 - update locales 2015-03-13 15:18:11 -07:00
Fred Dixon
2bf6d05ca1 Merge pull request #565 from antobinary/meteor-endpoint
meteor endpoint /html5client/check. update BigBlueButton.html
2015-03-13 17:31:06 -04:00
Anton Georgiev
238f1e56ff meteor endpoint /html5client/check. update BigBlueButton.html 2015-03-13 20:43:32 +00:00
Tiago Daniel Jacobs
0f130e9f69 Removed unused property 2015-03-12 21:40:16 +00:00
Tiago Daniel Jacobs
f6139c5b4a Updating the config.xml with the lockOnJoin* properties 2015-03-12 21:23:36 +00:00
Tiago Daniel Jacobs
71d1d70a4e Hide label and checkbox of lockOnJoin configuration 2015-03-12 21:14:42 +00:00
Tiago Daniel Jacobs
e52262cf15 Added lockOnJoinConfigurable property to lock config (missed some files) 2015-03-12 20:52:52 +00:00
Tiago Daniel Jacobs
4fff479e03 Added lockOnJoinConfigurable property to lock config. 2015-03-12 20:52:38 +00:00
Richard Alam
778df2da9d Update ChatBox.mxml 2015-03-12 14:37:20 -04:00
Fred Dixon
c2d97d9cb6 Merge pull request #556 from matnunes/bugfix-1892
Bugfix issue 1892 (ChatBox)
2015-03-12 13:52:33 -04:00
Fred Dixon
2c5d4d105e Merge pull request #551 from bigbluebutton/bbb-lock-settings-fix
Fixed problem when changing presenter with webcam
2015-03-12 13:52:14 -04:00
Anton Georgiev
efc126f410 styled the wrong div 2015-03-10 16:11:56 +00:00
Anton Georgiev
edb667a419 minor styling changes 2015-03-10 15:28:39 +00:00
Tiago Daniel Jacobs
3c6601a5df Fixing infinite loop in the presenter change event. 2015-03-10 05:36:13 +00:00
Tiago Daniel Jacobs
f4087ab270 Fixing infinite loop in the presenter change event. 2015-03-10 05:34:22 +00:00
Anton Georgiev
ee69c62309 first check if the html5 client is running and then attempt to redirect the user 2015-03-06 22:44:13 +00:00
Anton Georgiev
deec36b411 style the redirect page a bit 2015-03-06 22:43:51 +00:00
Anton Georgiev
e77b295517 Merge branch 'master' into flash-redirect 2015-03-05 22:56:34 +00:00
Anton Georgiev
f62fd4ce31 due to this the html5 client was not able to join a voice conf without a flash user already joined 2015-03-05 21:10:27 +00:00
Anton Georgiev
0a79f0dc29 the redirection page offers installing Flash or redirection 2015-03-05 17:30:09 +00:00
Anton Georgiev
44429a6bd6 redirect user to HTML5 client if Flash not installed/enabled. Must be attendee (for now) 2015-03-04 23:51:33 +00:00
Fred Dixon
cf5ab25ca0 Revert "Revert "Bbb lock settings fix"" 2015-03-04 16:47:35 -05:00
Chad Pilkey
34fdfb9f83 Revert "Bbb lock settings fix" 2015-03-04 11:49:13 -05:00
Chad Pilkey
8de57dfc36 Fixed the WhiteboardModule definition in config.xml 2015-03-04 10:43:54 -05:00
Felipe Cecagno
9780df5b13 Merge branch '090-deskshare-window' into mconf-live0.6.2 2015-03-04 12:34:48 -03:00
Felipe Cecagno
8bac97b10c adding the missing pt_BR strings 2015-03-04 12:34:34 -03:00
Felipe Cecagno
43d78b656b Merge branch '090-new-videodock' into mconf-live0.6.2 2015-03-04 11:57:52 -03:00
Felipe Cecagno
2d00bda3ea removed an ObjectUtil.toString that was causing the entire UI to freeze when there was an async error on UserVideo 2015-03-04 11:57:34 -03:00
Tiago Daniel Jacobs
9d53c765fa Redoing the changes to PhoneButton due to conflict on merge 2015-03-03 07:04:47 +00:00
Tiago Daniel Jacobs
34e2e48be2 Merging 2015-03-03 06:52:56 +00:00
Tiago Daniel Jacobs
cc9fdc1a9e Fixed layouts combo state when presenter mode is turned on/off 2015-03-03 06:34:56 +00:00
Tiago Daniel Jacobs
0033e36384 Fixed state of webcam button when leaving presenter state 2015-03-03 06:34:10 +00:00
Tiago Daniel Jacobs
3060b2ea7d Implemented method to check if lock is in use or not, refactored to use it in entire code. 2015-03-03 05:01:58 +00:00
Tiago Daniel Jacobs
647c0a83bc Code clean up and fixes to lock settings 2015-03-03 04:49:56 +00:00
Tiago Daniel Jacobs
95cf0167f2 Restored ability to lock/unlock individual users 2015-03-03 00:44:34 +00:00
Tiago Daniel Jacobs
7cd5fff1d6 Fixed display of the lock on join flag 2015-03-02 19:25:26 +00:00
Tiago Daniel Jacobs
bf62dd66a2 Fixed mute on start, added lock on join option 2015-03-02 18:06:09 +00:00
Felipe Cecagno
bb330cf0a2 Merge branch '090-deskshare-window' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/resources/prod/layout.xml
	bigbluebutton-client/resources/prod/lib/deployJava.js
	bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
2015-03-02 00:25:02 -03:00
Felipe Cecagno
7fee4ac0d0 improved the desktop sharing publish window preview 2015-03-02 00:23:18 -03:00
Chad Pilkey
815be28d0b Revert "Revert "Added Java check to the configuration notifications""
This reverts commit 82545a03f3.
2015-03-02 00:53:10 +00:00
Felipe Cecagno
87151b5513 cleanup; deskshare view window toolbar appears on top of the deskshare video, no matter the way the window is scrolled 2015-03-01 20:27:17 -03:00
Felipe Cecagno
b88f652bf6 cleanup 2015-03-01 12:34:13 -03:00
Mateus Dalepiane
dfceb138b0 Implemented an auto hiding toolbar to toggle deskshare options 2015-03-01 12:27:20 -03:00
Mateus Dalepiane
9e9bbfc72e All resize operations work as expected
The toggle button is still missplaced.
2015-03-01 12:27:20 -03:00
Mateus Dalepiane
114fad22e6 Deskshare fit window/actual size button partially working 2015-03-01 12:27:20 -03:00
Mateus Dalepiane
f3ba92c087 Partially working 2015-03-01 12:27:20 -03:00
Richard Alam
e8c61c5356 - lower log level on some logs so we can filter
- add a detection when a meeting actor has hung resulting in users not being able to do anything
2015-02-26 16:02:21 +00:00
Richard Alam
27bb493473 Merge pull request #530 from capilkey/improve-webrtc-logging
Improvements to WebRTC
2015-02-24 16:26:33 -05:00
Chad Pilkey
eb17e4a056 added extra logging information to TURN debugging 2015-02-24 12:15:01 -08:00
Chad Pilkey
c9939b1c7c fixed webrtc call failed callback 2015-02-24 12:14:25 -08:00
Chad Pilkey
4be1b5c2e3 remove disclaimer from bbblogger.js 2015-02-24 11:36:41 -08:00
Chad Pilkey
4336612830 fixed a null error and race condition with the TURN support 2015-02-24 11:36:14 -08:00
Chad Pilkey
0ebfec21f7 fixed an error with the webrtc warnings 2015-02-24 11:35:27 -08:00
Richard Alam
c1671f7a5d - remote stun related code
- get meeting and user info so we can log more info when user fails to connect to Red5
2015-02-20 19:54:24 +00:00
Richard Alam
7d7b29620d - change log level to warn 2015-02-18 15:48:23 +00:00
Richard Alam
65c35e1137 Merge pull request #520 from bigbluebutton/add-more-info-js-log
- add more info into JS log
2015-02-17 19:26:22 -05:00
Richard Alam
edaeaf6bf4 Merge pull request #521 from capilkey/webrtc-fixes
WebRTC fixes
2015-02-17 19:26:07 -05:00
Chad Pilkey
e6d3cd551d fixed a race condition in the webrtc javascript code, and added cause for error 1004 2015-02-17 16:11:42 -08:00
Richard Alam
931d1624d7 - add more info into JS log 2015-02-18 00:09:10 +00:00
Felipe Cecagno
d6f587db7b Merge branch '090-force-listen-only' into mconf-live0.6.2 2015-02-17 21:08:01 -02:00
Felipe Cecagno
6cb8ca807e fixed some edge cases when using forceListenOnly and other problems due to the ability to use webrtc after using flash audio 2015-02-17 21:06:03 -02:00
Calvin Walton
8e7a34b5dd Add webrtc 1009 error to translations 2015-02-17 13:29:27 -05:00
Calvin Walton
1af70d8e4e Use configured stun/turn servers when making webrtc call 2015-02-17 12:00:04 -05:00
Felipe Cecagno
538961c2f6 Merge branch '090-listen-only-by-default' into HEAD 2015-02-13 18:26:09 -02:00
Richard Alam
797be9ce10 Merge pull request #515 from capilkey/fix-blurriness
fix blurriness in the client caused by Flex SDK 4.14
2015-02-13 14:11:14 -05:00
Chad Pilkey
941b044cd7 fix blurriness in the client caused by Flex SDK 4.14 2015-02-13 10:49:23 -08:00
Fred Dixon
0c5e427093 Merge pull request #514 from capilkey/pixel-align-fix
move the pixel alignment check to a callback
2015-02-12 18:57:29 -05:00
Chad Pilkey
537f5b6e9a move the pixel alignment check to a callback 2015-02-12 15:52:03 -08:00
Fred Dixon
aa518d6ef0 Merge pull request #513 from capilkey/cut-call-time
Cut WebRTC call time
2015-02-12 18:13:09 -05:00
Chad Pilkey
229f446914 remove help button from the layout correctly 2015-02-12 14:27:54 -08:00
Chad Pilkey
10874f986d move <script> tag to the correct place in BigBlueButton.html 2015-02-12 14:26:19 -08:00
Chad Pilkey
d6ef5168c0 add support for webrtc call transferring, cuts join time in half 2015-02-12 14:25:41 -08:00
Richard Alam
aa0e92137b - remove querying of stun from flash. We will be doing this outside in JS instead. 2015-02-12 18:29:39 +00:00
Felipe Cecagno
fe69560cb1 Merge branch '090-java-detection' into mconf-live0.6.2 2015-02-12 15:51:54 -02:00
Chad Pilkey
81b567aebc Merge remote-tracking branch 'upstream/master' into fix-issue-1866 2015-02-09 11:52:43 -08:00
Chad Pilkey
5326b9cca2 fixed issue 1865 - fit-to-width zoom issues 2015-02-09 11:51:45 -08:00
Chad Pilkey
ab4dfdf4f3 fixed two issues with the text toolbar sticking around when it shouldn't 2015-02-09 11:51:00 -08:00
Richard Alam
cd9ef88567 - update locales 2015-02-09 16:30:23 +00:00
Fred Dixon
2ed3195fbc Update bbbResources.properties
Change the copyright date to 2015
2015-02-06 16:34:54 -05:00
Richard Alam
24b9c5c525 - store stun and turn servers in client 2015-02-06 21:05:12 +00:00
Richard Alam
cdc6daced8 - add support for configuring stun and turn servers
- add new /stuns api to be called by the Flash client
2015-02-06 19:46:56 +00:00
Mateus Dalepiane
899a98d3c5 Reverting our Java detection changes
Since BBB team also improved Java detection, we decided to revert our changes
and use theirs.
2015-02-05 16:25:40 -02:00
Felipe Cecagno
64df664a52 Merge branch '090-download-chat' into mconf-live0.6.2 2015-02-05 14:22:22 -02:00
Chad Pilkey
ac220162dd add a context menu item to UserGrid to export user names 2015-02-04 12:33:08 -08:00
Mateus Dalepiane
1b606dd95b Fix chat toolbar resize bug
The ChatToolbar width depends on the ChatCanvas width. If the ChatBox is not
validated before the evaluation of the ChatToolbar width, the ChatCanvas might
have an old value. This results in a wrong ChatToolbar width.
2015-02-04 17:57:50 -02:00
Chad Pilkey
ac373429b2 fix arrow keys in textboxes and slide change keybinds 2015-02-03 12:29:26 -08:00
Chad Pilkey
8eb7bc9ed8 Merge remote-tracking branch 'upstream/master' into fix-issue-1866
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/business/VideoWindowItf.as
2015-02-03 12:27:16 -08:00
Felipe Cecagno
4b683e9bd1 Merge branch '090-java-detection' into mconf-live0.6.2 2015-02-03 17:08:59 -02:00
Felipe Cecagno
0bd0a8b30b reverted deployJava to the original, and changed a bit bbb_deskshare so the java detection works on Windows as well 2015-02-03 17:08:44 -02:00
Mateus Bisotto
1fffd18153 Fixed issue in chatbox related described in: https://code.google.com/p/bigbluebutton/issues/detail?id=1892 2015-02-03 10:12:47 -02:00
Chad Pilkey
d4b4950aaf fixed an exception in VideoWindowItf 2015-02-02 16:36:43 -08:00
Richard Alam
e2eea34830 - fix exception that broke sharing of webcam 2015-02-02 19:34:26 +00:00
Chad Pilkey
672348eafe labelling and tab order fixes for accessiblity 2015-01-30 08:03:36 -08:00
Chad Pilkey
364178857e reapplied the global shortcut keys 2015-01-29 10:03:13 -08:00
Chad Pilkey
69b250bea6 fixed the loading of the slide text 2015-01-29 10:02:12 -08:00
Felipe Cecagno
6e11cbf602 Merge branch '090-new-videodock' into mconf-live0.6.2 2015-01-28 22:54:04 -02:00
Felipe Cecagno
d728b730ab simplified the default profiles 2015-01-28 22:53:56 -02:00
Felipe Cecagno
14f112cf42 Merge branch '090-new-videodock' into mconf-live0.6.2
Conflicts:
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/src/org/bigbluebutton/main/views/CameraDisplaySettings.mxml
	bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/maps/VideoEventMap.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/maps/VideoEventMapDelegate.as
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/ControlButtons.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/PublishWindow.mxml
	record-and-playback/deploy.sh
2015-01-28 22:50:55 -02:00
Felipe Cecagno
4cebd2cd27 fixed the issue of duplicating video streams on a just joined user 2015-01-28 21:32:58 -02:00
Felipe Cecagno
5938984886 removed the videodock code which is not used anymore 2015-01-28 21:32:01 -02:00
Felipe Cecagno
9a7bae79a8 Merge branch '090-new-videodock' into HEAD
Conflicts:
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/src/org/bigbluebutton/main/views/CameraDisplaySettings.mxml
	bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/maps/VideoEventMap.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/maps/VideoEventMapDelegate.as
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/PublishWindow.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/ToolbarButton.mxml
	record-and-playback/deploy.sh
2015-01-28 20:33:28 -02:00
Felipe Cecagno
162e6899a4 added back the css for the video warning message 2015-01-28 19:18:58 -02:00
Chad Pilkey
9580a9c350 removed forceListenOnly option from the PhoneModule, use presenterShareOnly instead 2015-01-27 15:27:41 -08:00
Chad Pilkey
ef21d9a22e changed the java help delay from 3 to 7 seconds 2015-01-27 15:26:37 -08:00
Chad Pilkey
19fb9b9671 Revert "Revert "Added Java check to the configuration notifications""
This reverts commit 82545a03f3.
2015-01-27 14:19:02 -08:00
Fred Dixon
82545a03f3 Revert "Added Java check to the configuration notifications" 2015-01-27 17:11:54 -05:00
Fred Dixon
57d82e3eb9 Merge pull request #490 from SenecaCDOT-BigBlueButton/client-pre-check
Added Java check to the configuration notifications
2015-01-27 17:11:36 -05:00
Chad Pilkey
84d6c5e132 added deskshare help information for Chrome users 2015-01-27 13:54:24 -08:00
Felipe Cecagno
c3e29d2114 Merge branch '090-multinotes' into mconf-live0.6.2 2015-01-26 13:25:31 -02:00
Felipe Cecagno
ecb4f82dd7 fixed the issue of not opening the correct number of additional notes when requested 2015-01-26 13:25:09 -02:00
Felipe Cecagno
005de12e96 Merge branch '090-branding-logo' into mconf-live0.6.2 2015-01-26 12:11:55 -02:00
Felipe Cecagno
5cb5b189e0 removed the default background image, and changed the copyright message 2015-01-26 12:11:42 -02:00
Felipe Cecagno
03ba8b2866 Merge branch 'edit-layouts' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
	bigbluebutton-client/branding/default/style/css/assets/images/ic_file_download_16px.png
	bigbluebutton-client/branding/default/style/css/assets/images/ic_file_upload_16px.png
	bigbluebutton-client/src/org/bigbluebutton/common/Images.as
	bigbluebutton-client/src/org/bigbluebutton/modules/layout/views/BroadcastButton.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/layout/views/LayoutsCombo.mxml
2015-01-26 11:49:22 -02:00
Felipe Cecagno
ac6813595b show an alert when the moderator broadcasts his layout to others 2015-01-26 11:42:45 -02:00
Felipe Cecagno
6fe678d78a new icon set for the layout control buttons 2015-01-26 11:42:20 -02:00
Felipe Cecagno
eb4e5aa360 redo the edition of layouts feature; now moderators receive the broadcasted layout as well as presenter and viewers 2015-01-26 11:21:04 -02:00
Felipe Cecagno
25ff17d906 Merge branch '090-guest-role' into mconf-live0.6.2
Conflicts:
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/CollectorActor.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/MessageNames.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/OutMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/ValueObjects.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
2015-01-25 21:01:10 -02:00
Felipe Cecagno
7dba55cdbb new set of icons for guest management 2015-01-25 20:52:41 -02:00
Felipe Cecagno
f6d6e4e40c Merge branch '090-guest-role' into HEAD
Conflicts:
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/meeting/messaging/redis/MeetingMessageHandler.java
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/CollectorActor.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/MeetingActor.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/MessageNames.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/OutMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/ValueObjects.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/locale/en_US/bbbResources.properties
	bigbluebutton-client/locale/pt_BR/bbbResources.properties
	bigbluebutton-client/src/org/bigbluebutton/main/views/LoadingBar.mxml
	bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy
2015-01-25 18:36:30 -02:00
Felipe Cecagno
3a89cab752 Merge branch '090-java-detection' into mconf-live0.6.2 2015-01-25 18:20:48 -02:00
Felipe Cecagno
b7130a379f Merge branch '090-java-detection' into HEAD
Conflicts:
	bigbluebutton-client/locale/pt_BR/bbbResources.properties
	bigbluebutton-client/resources/prod/BigBlueButton.html
	bigbluebutton-client/resources/prod/lib/bbb_deskshare.js
	bigbluebutton-client/src/org/bigbluebutton/modules/deskshare/view/components/DesktopPublishWindow.mxml
2015-01-25 18:19:13 -02:00
Felipe Cecagno
4a2eac0b94 Merge branch '090-network-monitor' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
2015-01-25 17:31:07 -02:00
Felipe Cecagno
50a6e9ed4e changed the icon set for the network monitor feature 2015-01-25 17:29:03 -02:00
Felipe Cecagno
b2cd417049 Merge branch '090-network-monitor' into HEAD
Conflicts:
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
	bigbluebutton-client/resources/config.xml.template
2015-01-25 16:26:11 -02:00
Felipe Cecagno
899cfd1358 Merge branch '090-multinotes' into mconf-live0.6.2
Conflicts:
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/BigBlueButtonInGW.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/InMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/OutMessages.scala
	bigbluebutton-client/src/org/bigbluebutton/modules/layout/model/LayoutDefinition.as
2015-01-25 12:50:49 -02:00
Felipe Cecagno
d76337fe6a changed the icons set for the shared notes window 2015-01-25 12:45:00 -02:00
Felipe Cecagno
2c255dc9ae Merge branch '090-multinotes' into HEAD
Conflicts:
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/InMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/OutMessages.scala
	bigbluebutton-apps/src/main/webapp/WEB-INF/red5-web.xml
	bigbluebutton-client/resources/prod/layout.xml
	bigbluebutton-client/src/org/bigbluebutton/modules/layout/managers/LayoutManager.as
2015-01-25 12:12:53 -02:00
Felipe Cecagno
a7e286ae33 Merge branch '090-mconf-branding' into mconf-live0.6.2 2015-01-25 12:00:59 -02:00
Felipe Cecagno
0843ec1361 Merge branch '090-mconf-branding' into HEAD
Conflicts:
	bigbluebutton-client/locale/ru_RU/bbbResources.properties
	bigbluebutton-config/web/default.pdf
2015-01-25 11:59:45 -02:00
Felipe Cecagno
9f7ec7068b Merge branch '090-fullscreen' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
2015-01-24 23:45:14 -02:00
Felipe Cecagno
d4422f8591 changed the full screen button icon; using a different icon to enter and exit the full screen mode; removed the vertical gap of the main application shell 2015-01-24 23:43:05 -02:00
Felipe Cecagno
0ee4905b69 Merge branch '090-fullscreen' into HEAD
Conflicts:
	bigbluebutton-client/locale/pt_BR/bbbResources.properties
	bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
2015-01-24 17:53:42 -02:00
Felipe Cecagno
df1fe03c29 Merge branch '090-expanded-status' into mconf-live0.6.2
Conflicts:
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
2015-01-24 17:48:19 -02:00
Felipe Cecagno
e65fa1d28e Merge branch '090-expanded-status' into HEAD
Conflicts:
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/participants/ParticipantsListener.java
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/ValueObjects.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
2015-01-24 17:34:53 -02:00
Felipe Cecagno
703d206b0d Merge branch '090-download-presentation' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
2015-01-24 17:20:35 -02:00
Felipe Cecagno
3cf904d8d7 replaced some icons from the presentation module by the google's material design icons 2015-01-24 17:18:30 -02:00
Felipe Cecagno
b86efc9119 Merge branch '090-download-presentation' into HEAD
Conflicts:
	bigbluebutton-client/locale/pt_BR/bbbResources.properties
	bigbluebutton-web/grails-app/services/org/bigbluebutton/web/services/PresentationService.groovy
2015-01-24 16:44:26 -02:00
Felipe Cecagno
2b59824075 Merge branch '090-download-chat' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/maps/ChatEventMap.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatBox.mxml
2015-01-24 16:39:47 -02:00
Felipe Cecagno
6746cf0b26 reduce the padding between chat messages 2015-01-24 16:37:30 -02:00
Felipe Cecagno
12bf57bbce changed the chat renderer so the name doesn't get truncated when a message is first presented 2015-01-24 16:29:03 -02:00
Felipe Cecagno
488faed991 Merge branch '090-download-chat' into HEAD
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/maps/ChatEventMap.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/model/ChatConversation.as
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatBox.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatView.mxml
2015-01-24 16:28:08 -02:00
Felipe Cecagno
00dedc4396 fix the visibility of the close button for the main shared notes window 2015-01-24 15:39:02 -02:00
Richard Alam
7f2caf852f - use the passed in authToken from bbb-web to validate in bbb-apps 2015-01-23 20:01:44 +00:00
Felipe Cecagno
e0acedce5f Merge branch '090-change-role' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/main/model/users/BBBUser.as
	bigbluebutton-client/src/org/bigbluebutton/main/views/RecordButton.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/ToolbarPopupButton.mxml
2015-01-23 17:57:22 -02:00
Felipe Cecagno
4a8667ca28 Merge branch '090-change-role' into HEAD
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/main/views/RecordButton.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/ToolbarButton.mxml
2015-01-23 17:50:18 -02:00
Chad Pilkey
8cb29e1ccc Merge branch 'master' of https://github.com/bigbluebutton/bigbluebutton into client-pre-check 2015-01-23 10:36:24 -08:00
Felipe Cecagno
408e573478 Merge branch '090-branding-logo' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/whiteboard/views/WhiteboardToolbar.mxml
2015-01-23 15:43:52 -02:00
Felipe Cecagno
e44e65dc70 Merge branch '090-branding-logo' into HEAD 2015-01-23 15:42:06 -02:00
Chad Pilkey
742bd1a423 added extra webcam warning for Chrome users 2015-01-21 14:21:26 -08:00
Chad Pilkey
8a3fca5d3b fix for issue 1868 2015-01-21 13:22:40 -08:00
Felipe Cecagno
2761c31e52 Merge branch '090-encrypted-recording' into mconf-live0.6.2
Conflicts:
	bbb-video/build.gradle
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/meeting/messaging/redis/MeetingMessageHandler.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/participants/ParticipantsListener.java
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/CollectorActor.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/MeetingActor.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/InMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/MessageNames.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/OutMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/ValueObjects.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
	bigbluebutton-client/locale/de_DE/bbbResources.properties
	bigbluebutton-client/locale/en_US/bbbResources.properties
	bigbluebutton-client/locale/pt_BR/bbbResources.properties
	bigbluebutton-client/src/org/bigbluebutton/main/views/LoadingBar.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatBox.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatView.mxml
	bigbluebutton-config/web/index.html
	bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy
	bigbluebutton-web/grails-app/services/org/bigbluebutton/web/services/PresentationService.groovy
2015-01-21 18:11:56 -02:00
Chad Pilkey
9032afdb38 Merge remote-tracking branch 'upstream/master' into client-pre-check 2015-01-21 11:41:24 -08:00
Chad Pilkey
80e58d1ee3 added java check to the configuration notifications 2015-01-21 11:40:55 -08:00
Richard Alam
26c6ca0fd1 - update locales from transifex 2015-01-20 18:47:19 +00:00
Richard Alam
95776a62bd - updating locales 2015-01-19 18:38:00 +00:00
Chad Pilkey
12d3a34ff5 change warnings to notifications 2015-01-19 10:22:15 -08:00
Chad Pilkey
5a9a2a0a6c minor tweaks to the configuration warnings 2015-01-16 13:39:44 -08:00
Chad Pilkey
9be9cca051 added a configuration warning system to the flash client 2015-01-15 16:14:49 -08:00
Chad Pilkey
fa7fa71f41 updated ChatOptions default fontSize to match config.xml.template 2015-01-15 15:19:00 -08:00
Chad Pilkey
f67c68e728 made the chat message spacing a little tighter 2015-01-15 15:16:38 -08:00
Chad Pilkey
985f08895a removed the unused jssip library 2015-01-15 15:15:30 -08:00
Chad Pilkey
94377d5da9 removed old js files from html experiment 2015-01-15 15:13:44 -08:00
Chad Pilkey
644ad523c5 removed the old Settings module 2015-01-15 15:12:24 -08:00
Richard Alam
3579ad2122 - prevent dispatching of join event twice whihc triggers loading of modules twice 2015-01-14 21:04:43 +00:00
Richard Alam
083d85687c - fix formatting 2015-01-14 19:44:34 +00:00
Richard Alam
eca5c391bf - display the correct number of modules when loading. 2015-01-14 19:40:35 +00:00
Richard Alam
19044cacb2 - update locales 2015-01-06 15:24:57 +00:00
Richard Alam
3bb8c97f74 - change default chat font size to 12 2015-01-05 20:06:21 +00:00
Lucas Zawacki
2bf4b30b10 Use hostname instead of host on javascript webrtc bridge client code
This prevents it from appending the port number when a request is made from
the HTML5 client
2014-12-17 22:58:06 +00:00
Felipe Cecagno
d712b886a3 Merge branch 'multinotes' of github.com:mconf/bigbluebutton into 090-multinotes
Conflicts:
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/sharedNotes/SharedNotesApplication.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/sharedNotes/SharedNotesRoom.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/sharedNotes/SharedNotesRoomsManager.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/sharedNotes/SharedNotesService.java
	bigbluebutton-client/src/org/bigbluebutton/main/model/users/Conference.as
	bigbluebutton-client/src/org/bigbluebutton/modules/layout/managers/LayoutManager.as
	bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/managers/SharedNotesConnectionManager.as
	bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/maps/SharedNotesEventMap.mxml
2014-12-12 19:40:52 -02:00
Felipe Cecagno
befe30bcfb cleanup 2014-12-12 14:56:25 -02:00
Felipe Cecagno
9832eab463 reduced the dependency between the layouts module and the shared notes module 2014-12-12 14:52:09 -02:00
Chad Pilkey
8b7d0ddb24 font size in config, and two bugs with private chat squashed 2014-12-11 13:16:38 -08:00
Pedro Beschorner Marin
0b883d5392 Refactored apps new multinotes service 2014-12-11 14:35:48 -02:00
Pedro Beschorner Marin
d414d98bd9 More cleanup 2014-12-11 14:35:41 -02:00
Pedro Beschorner Marin
ac0a76872b Some cleanup 2014-12-11 14:35:33 -02:00
Pedro Beschorner Marin
7cdfa399ea Getting the number of shared notes from layout 2014-12-11 14:35:23 -02:00
Pedro Beschorner Marin
128c3b19bd Automatically creating shared notes 2014-12-11 14:35:16 -02:00
Pedro Beschorner Marin
bd1a90090c Initial saving of the additional notes in the layout 2014-12-11 14:34:51 -02:00
Felipe Cecagno
cb8bf3f49e fixing an exception that appeared when we set autoStart and skipCheck for the video module 2014-12-11 09:21:17 -02:00
Chad Pilkey
716d1f974b taking another shot at fixing the chat list stack overflow 2014-12-10 16:40:38 -08:00
Felipe Cecagno
f0b0568d8e Merge branch 'smooth-toolbar-transition' into mconf-live0.6.1 2014-12-10 20:01:38 -02:00
Felipe Cecagno
90a7214b9d fixing the NPE on startup 2014-12-10 20:01:29 -02:00
Felipe Cecagno
2dfe4a1aac Merge branch '090-expanded-status' into mconf-live0.6.1
Conflicts:
	bigbluebutton-apps/src/main/java/org/bigbluebutton/core/api/IBigBlueButtonInGW.java
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/ValueObjects.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/red5/UsersClientMessageSender.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/redis/UsersEventRedisPublisher.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/apps/users/redis/UsersMessageToJsonConverter.scala
	bigbluebutton-client/branding/default/style/css/BBBDefault.css
	bigbluebutton-client/src/org/bigbluebutton/common/Images.as
	bigbluebutton-client/src/org/bigbluebutton/main/model/users/BBBUser.as
	bigbluebutton-client/src/org/bigbluebutton/main/model/users/UserService.as
	bigbluebutton-client/src/org/bigbluebutton/modules/users/maps/UsersMainEventMap.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/users/services/MessageReceiver.as
	bigbluebutton-client/src/org/bigbluebutton/modules/users/views/StatusItemRenderer.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/users/views/UsersWindow.mxml
2014-12-10 18:33:18 -02:00
Felipe Cecagno
76f2e53cd3 cleanup 2014-12-10 18:06:54 -02:00
Chad Pilkey
2b78ed2c09 reworked the layout pushing so that viewers don't get new rows 2014-12-10 11:17:33 -08:00
Felipe Cecagno
514c65e8cf prepared the css file to use the icons from the branding file instead of the embedded images file 2014-12-10 16:39:46 -02:00
Felipe Cecagno
c988875e2c changed the set of icons used for the mood feature 2014-12-10 16:38:25 -02:00
Felipe Cecagno
fce27a0bd9 Merge branch 'smooth-toolbar-transition' into mconf-live0.6.1
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/whiteboard/views/WhiteboardToolbar.mxml
2014-12-09 20:44:27 -02:00
Felipe Cecagno
e1e59ef0cc smooth transition between whiteboard toolbar visible and invisible 2014-12-09 20:35:02 -02:00
Felipe Cecagno
af238993fd Merge branch '090-download-chat' into mconf-live0.6.1 2014-12-09 17:54:51 -02:00
Felipe Cecagno
f53ea822f0 fix translation 2014-12-09 17:54:37 -02:00
Felipe Cecagno
92158362e0 do not enforce listen only by default 2014-12-09 17:53:39 -02:00
Felipe Cecagno
9f2c5926fa Merge branch '090-download-chat' into mconf-live0.6.1 2014-12-09 17:21:15 -02:00
Felipe Cecagno
e2692c039f using a different string to set the download chat filename 2014-12-09 17:20:55 -02:00
Felipe Cecagno
12f7aacf4b Merge remote-tracking branch 'bigbluebutton/master' into mconf-live0.6.1
Conflicts:
	bigbluebutton-client/locale/fr_CA/bbbResources.properties
	bigbluebutton-client/resources/config.xml.template
	bigbluebutton-client/src/org/bigbluebutton/main/views/RecordButton.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/maps/ChatEventMap.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/model/ChatConversation.as
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatBox.mxml
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatView.mxml
2014-12-09 16:52:43 -02:00
Chad Pilkey
0a1c74ce07 Merge remote-tracking branch 'upstream/master' into add-chat-fontsize-config
Conflicts:
	bigbluebutton-client/src/org/bigbluebutton/modules/chat/services/ChatMessageService.as
2014-12-08 13:11:34 -08:00
Chad Pilkey
c96e78d829 chat scrolling should be more robust and not rely on events firing 2014-12-08 13:07:40 -08:00
Richard Alam
5667ea4156 - update locales from transifex 2014-12-05 11:05:42 -08:00
Richard Alam
3e4f2d930a Merge pull request #457 from SenecaCDOT-BigBlueButton/fix-chat-scrolling
Rewrote chat scrolling so that it always scrolls as far down as possible
2014-12-04 17:46:28 -05:00
Chad Pilkey
f12ac62a47 rewrote chat scrolling so that it always scrolls as far down as possible 2014-12-04 14:39:21 -08:00
Richard Alam
878c81d04b Merge pull request #456 from mconf/fix-client-warnings
Handle mxmlc warnings
2014-12-03 15:18:47 -05:00
Felipe Cecagno
afdf4d5f4f few tweaks to handle the warnings during the compilation of bigbluebutton-client 2014-12-03 16:57:39 -02:00
Felipe Cecagno
7d922d0a23 cleanup 2014-12-03 16:53:45 -02:00