You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/10/25 19:12:23 UTC

svn commit: r1188802 - /tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js

Author: hlship
Date: Tue Oct 25 17:12:23 2011
New Revision: 1188802

URL: http://svn.apache.org/viewvc?rev=1188802&view=rev
Log:
TAP5-1721: A JavaScript typo prevents the error icon for fields containing validation errors from appearing

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js?rev=1188802&r1=1188801&r2=1188802&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js Tue Oct 25 17:12:23 2011
@@ -1654,7 +1654,7 @@ Tapestry.FieldEventManager = Class.creat
 
     getIcon : function() {
         if (!this.icon) {
-            this.com = $(this.field.id + "_icon");
+            this.icon = $(this.field.id + "_icon");
         }
 
         return this.icon;