summaryrefslogtreecommitdiffstats
path: root/priv
AgeCommit message (Collapse)Author
2014-09-12return true when transport.send returns undefinedVladimir Mitnick
2014-06-03Merge branch 'http_url_syntax' of git://github.com/fgallaire/bulletLoïc Hoguin
2014-02-20DRY url.replace().Florent Gallaire
Automatically disable WebSocket when the URL begins with 'http'. Update the README with the new 'http' url syntax. Update the clock example with the new 'http' url syntax.
2014-02-19Merge branch 'fix-ie' of git://github.com/n11/bulletLoïc Hoguin
2013-09-05 Fix undefined object error on IEcy
2013-08-07When polling check if data is definedEd Barwani
Prevent a javascript error that could stop polling. This happens when a request returns a 204 No Content. jQuery success callback has no data in this case causing an error.
2013-07-11Fixed error using undefined variable "fake".Agustin Cautin
2013-06-22Use xhr for sending with eventsource connections.Dave Peticolas
2013-06-19Drop reference to xhr request when done.Dave Peticolas
2013-06-19Fix jshint warning.Dave Peticolas
2013-06-19Ignore close callback when closed.Dave Peticolas
This fixes a bug where closing a bullet connection in poll mode will not work.
2013-06-07Merge branch 'eventsource' of git://github.com/jdavisp3/bulletLoïc Hoguin
2013-04-25Javascript cleanup.Dave Peticolas
- Declare delayDefault as a local variable. - Handle missing transport in send() and close(). The transport might be missing if we are in the middle of a reconnect attempt. - Drop transport reference after closing. - Use null instead of false for missing transport.
2013-04-08Support EventSource as a transport.Dave Peticolas
2013-04-07Drop transport reference after closing.Dave Peticolas
2013-04-07Handle missing transport in send() and close().Dave Peticolas
The transport might be missing if we are in the middle of a reconnect attempt.
2013-04-07Declare delayDefault as a variable.Dave Peticolas
2012-07-11Ensure we only handle the onclose event onceLoïc Hoguin
Fixes an issue when trying to establish the connection with Firefox 13 fails during the handshake. It would call onclose twice.
2012-07-09Add an ondisconnect hook and fix reconnect retriesLoïc Hoguin
2012-06-11Update version to 0.2.00.2.0Loïc Hoguin
2012-04-24Fix a bug on xhrPolling failing to use the proper URL on reconnectLoïc Hoguin
2012-03-20Add a JS function to change the url being used for the streamLoïc Hoguin
This doesn't reconnect the stream, just changes it for the next reconnection. This is useful if you need to change the arguments given each time you connect.
2011-11-30For xhrPolling, call onopen only after we get our first responseLoïc Hoguin
2011-11-30Don't call onerror on xhrPolling POST error for nowLoïc Hoguin
2011-11-23Don't cache xhrPolling requestsLoïc Hoguin
2011-11-23Don't reconnect xhrPolling on error, let stream handle itLoïc Hoguin
2011-11-17Add missing }Loïc Hoguin
2011-11-17Fix errors at connection triggering an infinite connection-trying loopLoïc Hoguin
2011-11-17Various improvements to the JS sideLoïc Hoguin
Should fix a few small issues but with a few others remaining.
2011-11-09Replace const by var in JS for IE compatibilityLoïc Hoguin
2011-10-17Initial commitLoïc Hoguin
This is mostly a proof of concept. The client-side can be greatly improved (and we should probably take from other projects directly). The server-side is pretty much how it should be though.