aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2019-02-04 16:22:12 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2019-02-04 16:22:12 -0800
commit5588fb4802328a2183f4a55c36d6703ee435f85c (patch)
tree1eb5551821c6b234a0a419aa61923499c75f2fab /actioncable
parent1fc3a2cc1b13fdbd570f71b2c13973819589d21e (diff)
downloadrails-5588fb4802328a2183f4a55c36d6703ee435f85c.tar.gz
rails-5588fb4802328a2183f4a55c36d6703ee435f85c.tar.bz2
rails-5588fb4802328a2183f4a55c36d6703ee435f85c.zip
Use ES6 short style
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/lib/rails/generators/channel/templates/javascript/channel.js.tt6
1 files changed, 3 insertions, 3 deletions
diff --git a/actioncable/lib/rails/generators/channel/templates/javascript/channel.js.tt b/actioncable/lib/rails/generators/channel/templates/javascript/channel.js.tt
index 33baaa5a22..ddf6b2d79b 100644
--- a/actioncable/lib/rails/generators/channel/templates/javascript/channel.js.tt
+++ b/actioncable/lib/rails/generators/channel/templates/javascript/channel.js.tt
@@ -1,15 +1,15 @@
import consumer from "./consumer"
consumer.subscriptions.create("<%= class_name %>Channel", {
- connected: function() {
+ connected() {
// Called when the subscription is ready for use on the server
},
- disconnected: function() {
+ disconnected() {
// Called when the subscription has been terminated by the server
},
- received: function(data) {
+ received(data) {
// Called when there's incoming data on the websocket for this channel
}<%= actions.any? ? ",\n" : '' %>
<% actions.each do |action| -%>