Skip to content

Commit

Permalink
Fixes lint issues in example-rtm-client
Browse files Browse the repository at this point in the history
  • Loading branch information
l12s committed Mar 12, 2016
1 parent 142c69d commit b87e8d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/example-rtm-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ var rtm = new RtmClient(token, { logLevel: 'debug' });
rtm.start();

rtm.on(RTM_EVENTS.MESSAGE, function handleRtmMessage(message) {
console.log("Message:", message);
console.log('Message:', message);
});

rtm.on(RTM_EVENTS.REACTION_ADDED, function handleRtmReactionAdded(reaction) {
console.log("Reaction added:", reaction);
console.log('Reaction added:', reaction);
});

rtm.on(RTM_EVENTS.REACTION_REMOVED, function handleRtmReactionRemoved(reaction) {
console.log("Reaction removed:", reaction);
console.log('Reaction removed:', reaction);
});

0 comments on commit b87e8d4

Please sign in to comment.