Author: almaw
Date: Thu Aug 23 06:57:26 2007
New Revision: 568995

URL: http://svn.apache.org/viewvc?rev=568995&view=rev
Log:
WICKET-872 - Typo in org.apache.wicket.markup.html.tree.res.tree.js causes AJAX 
tree node addition failures

Modified:
    
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/tree/res/tree.js

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/tree/res/tree.js
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/tree/res/tree.js?rev=568995&r1=568994&r2=568995&view=diff
==============================================================================
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/tree/res/tree.js
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/tree/res/tree.js
 Thu Aug 23 06:57:26 2007
@@ -46,7 +46,7 @@
 
 Wicket.Tree.createElement = function(elementId, afterId) {
        var existing = Wicket.$(elementId);
-       if (typeof(existing) != "undefined" && exiting != null) {
+       if (typeof(existing) != "undefined" && existing != null) {
                Wicket.Tree.askForReload();
        }
 


Reply via email to