You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@openmeetings.apache.org by he...@isn10.com on 2014/02/13 12:23:15 UTC

Room Exit-button

Hello,

I found that room exit-button is set in confernceMenubar.lzx file. There 
is lines:
<handler name="onclick">
canvas._videocontainer._videoviewcontent.exitRoom();
</handler>

I have been trying to edit this to get user be redirecited to dashboard 
instead of public rooms when exiting from room.

I tried this:
quicklinkAct('dashboardModuleStartScreen');

But this leaves micrphone and video on - it does not end those 
functions. How to get this exiting properly and redirecting user to 
dashboard?

Thanks!

Re: Room Exit-button

Posted by Maxim Solodovnik <so...@gmail.com>.
in 3.0/3.1 you need to change  roomExit() function in swf-functions.js
<< window.location.hash = "#rooms/public";
>> window.location.hash = "#user/dashboard";

in 2.x
WebContent/src/base/mainMethods.lzx:511
<< quicklinkAct('conferenceModuleRoomList')
>> quicklinkAct('dashboardModuleStartScreen')


On Thu, Feb 13, 2014 at 6:23 PM, <he...@isn10.com> wrote:

> Hello,
>
> I found that room exit-button is set in confernceMenubar.lzx file. There
> is lines:
> <handler name="onclick">
> canvas._videocontainer._videoviewcontent.exitRoom();
> </handler>
>
> I have been trying to edit this to get user be redirecited to dashboard
> instead of public rooms when exiting from room.
>
> I tried this:
> quicklinkAct('dashboardModuleStartScreen');
>
> But this leaves micrphone and video on - it does not end those functions.
> How to get this exiting properly and redirecting user to dashboard?
>
> Thanks!
>



-- 
WBR
Maxim aka solomax