# showDiscussion

### Parameters

show - open(true = default) or closes(false) the discussion sidebar. You don't have to worry if it is opend or closed before, but show will also refresh an open discussion.

### Example Usages

```javascript
   brixxApi.showDiscussion(); //open the sidebar
```

```javascript
   brixxApi.showDiscussion(true); //open the sidebar
```

```javascript
   brixxApi.showDiscussion(false); //closes the sidebar
```
