diff options
author | Jeffrey Hardy <packagethief@gmail.com> | 2015-07-08 23:22:56 -0400 |
---|---|---|
committer | Jeffrey Hardy <packagethief@gmail.com> | 2015-07-08 23:22:56 -0400 |
commit | 502d47d7f6b5bf9533676c44b9e325dc3feca3c0 (patch) | |
tree | 1628db3ad2b69e4524bcf54981719f00b3eb3a87 /lib | |
parent | 5ad75fb4596416d36b513373c3745d10c3acee15 (diff) | |
download | rails-502d47d7f6b5bf9533676c44b9e325dc3feca3c0.tar.gz rails-502d47d7f6b5bf9533676c44b9e325dc3feca3c0.tar.bz2 rails-502d47d7f6b5bf9533676c44b9e325dc3feca3c0.zip |
Fix CoffeeScript syntax in code examples
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action_cable/server/broadcasting.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/server/broadcasting.rb b/lib/action_cable/server/broadcasting.rb index de13e26511..4f72ffd96f 100644 --- a/lib/action_cable/server/broadcasting.rb +++ b/lib/action_cable/server/broadcasting.rb @@ -16,7 +16,7 @@ module ActionCable # # Client-side coffescript which assumes you've already requested the right to send web notifications # App.cable.subscriptions.create "WebNotificationsChannel", # received: (data) -> - # web_notification = new Notification data['title'], body: data['body'] + # new Notification data['title'], body: data['body'] module Broadcasting # Broadcast a hash directly to a named <tt>broadcasting</tt>. It'll automatically be JSON encoded. def broadcast(broadcasting, message) |