You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by kn...@apache.org on 2006/11/03 23:12:03 UTC

svn commit: r471014 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/ajax/wicket-ajax.js

Author: knopp
Date: Fri Nov  3 14:12:02 2006
New Revision: 471014

URL: http://svn.apache.org/viewvc?view=rev&rev=471014
Log:
typo correction

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/ajax/wicket-ajax.js

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/ajax/wicket-ajax.js
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/ajax/wicket-ajax.js?view=diff&rev=471014&r1=471013&r2=471014
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/ajax/wicket-ajax.js (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/ajax/wicket-ajax.js Fri Nov  3 14:12:02 2006
@@ -670,7 +670,7 @@
 	submitFormById: function(formId, submitButton) {
 		var form = document.getElementById(formId);
 		if (form == null || typeof (form) == "undefined")
-			Wicket.Log.Error("Trying to submit form with id '"+formId+"' that is not in document.");
+			Wicket.Log.error("Trying to submit form with id '"+formId+"' that is not in document.");
 		return this.submitForm(form, submitButton);
 	},