> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/events/captionsdisabled.md).

# captionsDisabled

Emitted when the local user closes the captions panel.

#### Sample payload

```json
{
  "type": "captionsDisabled"
}
```

#### Sample subscription code

```javascript
sambaFrame.on('captionsDisabled', (event) => {
  console.log('Local user disabled captions');
});
```
