You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by li...@apache.org on 2008/02/07 20:17:43 UTC

svn commit: r619579 - /incubator/shindig/trunk/features/core/io.js

Author: lindner
Date: Thu Feb  7 11:17:41 2008
New Revision: 619579

URL: http://svn.apache.org/viewvc?rev=619579&view=rev
Log:
Firefox requires a null argument for xhr.send()

Modified:
    incubator/shindig/trunk/features/core/io.js

Modified: incubator/shindig/trunk/features/core/io.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/core/io.js?rev=619579&r1=619578&r2=619579&view=diff
==============================================================================
--- incubator/shindig/trunk/features/core/io.js (original)
+++ incubator/shindig/trunk/features/core/io.js Thu Feb  7 11:17:41 2008
@@ -168,7 +168,7 @@
           xhr.send("postData=");
         }
       } else {
-        xhr.send();
+        xhr.send(null);
       }
     },