hummingbird
hummingbird copied to clipboard
Persistent session across pages
In order for this to be useful, the user session needs to persist across page views. Right now as the user goes from one page to another (on the same site) his messages appear to be coming from different users. This should be easy to fix using cookies.
Also, it'd be nice to show the chat log when the page reloads to keep the integrity of conversation.
I would use localStorage instead of cookies. That would be easier to manage and is supported in most modern browsers. Cookies would work, but I feel the API's for localStorage are just easier to work with.