comparison doc/src/api/event/onPart.md @ 614:ebdc614db066

Docs: get rid of metadata
author David Demelier <markand@malikania.fr>
date Sun, 17 Dec 2017 09:21:49 +0100
parents bb9771fb5f44
children
comparison
equal deleted inserted replaced
613:0c7241258289 614:ebdc614db066
1 --- 1 # Event onPart
2 event: onPart 2
3 js: true 3 This event is triggered when someone has left a specific channel.
4 summary: "This event is triggered when someone has left a specific channel." 4
5 synopsis: "function onPart(server, origin, channel, reason)" 5 # Synopsis
6 arguments: 6
7 - "**server**: the current server," 7 ```javascript
8 - "**origin**: the person who left the channel," 8 function onPart(server, origin, channel, reason)
9 - "**channel**: the channel," 9 ```
10 - "**reason**: an optional reason." 10
11 --- 11 # Arguments
12
13 - **server**: the current server,
14 - **origin**: the person who left the channel,
15 - **channel**: the channel,
16 - **reason**: an optional reason.