# captionsEnabled

Emitted when the local user opens the captions panel.

#### Sample payload

```json
{
  "type": "captionsEnabled"
}
```

#### Sample subscription code

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