[Debtags-commits] [svn] r1935 - web/trunk/js

Enrico Zini enrico at costa.debian.org
Fri Sep 22 13:07:07 UTC 2006


Author: enrico
Date: Fri Sep 22 13:07:07 2006
New Revision: 1935

Modified:
   web/trunk/js/debtags.js
Log:
Fixed ;s a bit

Modified: web/trunk/js/debtags.js
==============================================================================
--- web/trunk/js/debtags.js	(original)
+++ web/trunk/js/debtags.js	Fri Sep 22 13:07:07 2006
@@ -39,6 +39,7 @@
 	var req = getXMLHttpRequest();
 	req.open("GET", url, async);
 	if (async)
+	{
 		req.onreadystatechange = function() {
 			switch (req.readyState)
 			{
@@ -52,8 +53,9 @@
 					progressfunc(req.responseText.split("\n"));
 					break;
 			}
-		}
-	req.send(null)
+		};
+	}
+	req.send(null);
 	if (!async)
 		finalfunc(req.responseText.split("\n"));
 }



More information about the Debtags-commits mailing list