Webchat Lite

Overview

The Webchat Lite application is a smaller and simplier version of our Webchat application. The primary difference in the two applications is that Webchat Lite does not have any AV support and is a strictly text-only experience. The Webchat Lite can be embed inside of the Presence Bar, as an embeded stand alone application, and a popup experience.

Property Description Required
roomid The room identifier you wish to embed. Yes
containerId That container element that you wish to render the Webchat Lite application. Yes
autoJoin Whether or not to join the room by default or leave the user in an anonymous view only mode.. Yes

Public Properties

Property Value Defined By
room A roomVO project which contains all the properties about the particular room including a copy of the occupants within the room. UPWebchateLite

Locale Property Overrides

See Override Locale Settings

Examples

To embed to badge widget simply add the following anywhere on the page you wish to see the badge.

<div id="webchatLite"></div>
<script type="text/javascript">
	up.render( "WebchatLite", {roomid:"UNIQUE_ROOM_ID",containerId:"webchatLite",autoJoin:"true"} );
</script>