Hide Chat with picker

Allows to hide the specified chat tab. Note: To activate the chat you must click on the tab title.

Specific configuration parameters

Parameter LibParameter WebDescription
hideElements.chatWithPickerhideChatWithPickerAllows to show or hide the chat with the Picker
default: "false"
options: "false: || "true"

Usage Example


Consider the following examples:

Hide chat with support

<!DOCTYPE html>
<head>
    <title>LSW v3 Embed</title>
</head>
<body>
    <div id="instaleap-lsw-v3"></div>
</body>

<script src="https://xandar-lsw-v3.instaleap.io/lib/chat.js"></script>
<script>
    const params = {
        job: "myJob",
        token: "myToken",
        container: "#instaleap-lsw-v3",                  
       	 hideElements: {
          chatWithPicker: true
        }
    }
    window.instaleap.chat.render(params)
</script>
</html>
https://xandar-lsw-v3.instaleap.io/chat?job=myJoB&token=myToken&hideChatWithPicker=true