r13375 - Products.Archetypes/trunk/Products/Archetypes/skins/archetypes/widgets/js

"Tom Gross" <[email protected]>
Newsgroups gmane.comp.web.zope.plone.archetypes.cvs
Message-ID <[email protected]>
Author: tom_gross
Date: Mon Dec 20 13:33:05 2010
New Revision: 13375

Modified:
   Products.Archetypes/trunk/Products/Archetypes/skins/archetypes/widgets/js/textcount.js
Log:
always update counter (to work with copy&paste too)


Modified: Products.Archetypes/trunk/Products/Archetypes/skins/archetypes/widgets/js/textcount.js
==============================================================================
--- Products.Archetypes/trunk/Products/Archetypes/skins/archetypes/widgets/js/textcount.js	(original)
+++ Products.Archetypes/trunk/Products/Archetypes/skins/archetypes/widgets/js/textcount.js	Mon Dec 20 13:33:05 2010
@@ -6,8 +6,7 @@
       // if too long...trim it!
       jq(field).attr('value',  fieldval.substring(0, maxlimit));
       alert( 'This field is limited to ' + maxlimit + ' characters in length.' );
-  } else {
-      // otherwise, update 'characters left' counter	
-      jq('input[name="' + countfield + '"]').attr('value', maxlimit - fieldval.length);
-  }
+  } 
+  // update 'characters left' counter	
+  jq('input[name="' + countfield + '"]').attr('value', Math.max(maxlimit - fieldval.length, 0));
 }

------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.