aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/app/assets/javascripts/action_cable/connection_monitor.coffee
Commit message (Collapse)AuthorAgeFilesLines
* Move actioncable javascript to app/javascript and change .coffee -> .jsRichard Macklin2018-11-021-95/+0
| | | | | | | | | | | | | | | | | | | | | - Rename action_cable/*.coffee -> *.js - Move app/assets/javascripts/* -> app/javascript/* - Rename action_cable.js.erb -> action_cable/index.js.erb Renaming the extension to .js is in preparation for converting these files from coffeescript to ES2015. Moving the files to app/javascript and putting the entry point in index.js.erb changes the structure of ActionCable's javascript to match the structure of ActiveStorage's javascript. (We are doing the file moving and renaming in a separate commit to ensure that the git history of the files will be preserved - i.e. git will track these as file renames rather than unrelated file additions/deletions. In particular, git blame will still trace back to the original authorship.)
* Defer starting connection monitor until a connection is openedJavan Makhmali2016-03-031-36/+45
|
* ConnectionMonitor is once again notified of disconnectDaniel Rhodes2016-03-031-0/+1
|
* Make ping into a message typeDaniel Rhodes2016-03-011-4/+2
| | | | | | | | This change makes ping into a message type, which makes the whole protocol a lot more consistent. Also fixes hacks on the client side to make this all work.
* ActionCable.logJavan Makhmali2016-02-231-7/+7
|
* Log ConnectionMonitor connectPratik Naik2016-02-231-0/+1
|
* Add client-side console logging to help debug reconnect issuesJavan Makhmali2016-02-231-1/+8
|
* Wrangle the asset build into something that sounds more generalMatthew Draper2016-02-011-0/+79