You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2009/02/12 11:03:34 UTC

svn commit: r743675 - /myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Author: bommel
Date: Thu Feb 12 10:03:33 2009
New Revision: 743675

URL: http://svn.apache.org/viewvc?rev=743675&view=rev
Log:
(TOBAGO-626) Input length restriction for tc:textarea

Modified:
    myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?rev=743675&r1=743674&r2=743675&view=diff
==============================================================================
--- myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Thu Feb 12 10:03:33 2009
@@ -1763,7 +1763,6 @@
     Tobago.addBindEventListener(ctrl, "blur", this, "leaveRequired");
   }
   if (this.maxLength && this.maxLength > 0) {
-    LOG.error("register " + this.maxLength);
     var ctrl = Tobago.element(this.id);
     Tobago.addBindEventListener(ctrl, "change", this, "checkMaxLength");
     Tobago.addBindEventListener(ctrl, "keyup", this, "checkMaxLength");