You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jc...@apache.org on 2008/04/18 14:19:39 UTC

svn commit: r649488 - /wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js

Author: jcompagner
Date: Fri Apr 18 05:19:34 2008
New Revision: 649488

URL: http://svn.apache.org/viewvc?rev=649488&view=rev
Log:
WICKET-1551 declare a javascript status var so that it doesn't hide window.status

Modified:
    wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js

Modified: wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js?rev=649488&r1=649487&r2=649488&view=diff
==============================================================================
--- wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js (original)
+++ wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js Fri Apr 18 05:19:34 2008
@@ -899,6 +899,7 @@
 	// Method that processes the request states
 	stateChangeCallback: function() {	
 		var t = this.transport;
+		var status;
 
 		if (t != null && t.readyState == 4) {
 			try {