You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the lib is loaded on the client by require('phoenix_jank'), but this prevents using your own channel as proposed by #2. Would be nice to move things around something like:
option 1, zero config:
require("phoenix_jank/auto")// auto boots jank with "/jank" socket defined in lib
option 2, BYOC:
varJank=require("phoenix_jank")Jank.init("/your_socket")// any other options needed?
The text was updated successfully, but these errors were encountered:
Currently, the lib is loaded on the client by
require('phoenix_jank')
, but this prevents using your own channel as proposed by #2. Would be nice to move things around something like:option 1, zero config:
option 2, BYOC:
The text was updated successfully, but these errors were encountered: