Tagged Questions

5
votes
4answers
374 views

How to do live concurrent editing?

I am trying to build a rails app that's basically just a text-editor (with some additional features I can't find anywhere else - which is why I'm building it) One of the core features is live ...
0
votes
0answers
32 views

How to check when Web Session Resumes? (In order to trigger an action)

I have a web app that receives push notifications from the web server. (via Juggernaut) juggernautProcess: (msg) => json = JSON.parse(msg) if json['notification']? notification = ...
0
votes
0answers
62 views

Using Juggernaut can you subscribe to and publish wildcard Redis events?

In the same way Redis provides a PSUBSCRIBE interface for wildcard events, can you subscribe to wildcards from the client (browser) using Juggernaut? I'm looking for something like this: From the ...
0
votes
2answers
72 views

Rails 3: Passing a string from Ruby to Javascript?

The Jist: In a <script type="text/javascript"> I want to access a static (won't ever change after Rails delivers page to client) string from Ruby to Javascript. More Detail (AKA: Why I want to ...