Comparing version 0.2.1 to 0.2.2
Changelog | ||
====== | ||
Version 0.2.2 | ||
--- | ||
March 29, 2012 | ||
* Fix Opera cross-domain XHR | ||
Version 0.2.1 | ||
@@ -5,0 +12,0 @@ --- |
@@ -30,3 +30,7 @@ /** | ||
BesedaPackage.transport.LongPolling.isAvailable = function(options) { | ||
return !!+'\v1' || window.XDomainRequest; | ||
if (/(opera)(?:.*version)?[ \/]([\w.]+)/.test(navigator.userAgent.toLowerCase())) { | ||
return document.location.hostname == options.host && (document.location.port || 80) == options.port; | ||
} else { | ||
return !!+'\v1' || window.XDomainRequest; | ||
} | ||
}; | ||
@@ -33,0 +37,0 @@ |
{ | ||
"name": "beseda", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Beseda is fast, well designed and featured Pub/Sub server. Beseda offers multiple platform API to develop realtime web applications.", | ||
@@ -5,0 +5,0 @@ "keywords" : ["pub/sub", "commet", "bayeux", "realtime", "push", "WebSocket"], |
5075873
13116