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 Lib | Parameter Web | Description |
---|---|---|
hideElements.chatWithPicker | hideChatWithPicker | Allows 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
Updated 3 days ago