You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2008/08/10 11:13:47 UTC

svn commit: r684427 - /ofbiz/trunk/applications/ecommerce/webapp/ecommerce/images/checkoutProcess.js

Author: ashish
Date: Sun Aug 10 02:13:46 2008
New Revision: 684427

URL: http://svn.apache.org/viewvc?rev=684427&view=rev
Log:
Changed the Event.
Patch from Jyotsna Rathore. 

Modified:
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/images/checkoutProcess.js

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/images/checkoutProcess.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/images/checkoutProcess.js?rev=684427&r1=684426&r2=684427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/images/checkoutProcess.js (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/images/checkoutProcess.js Sun Aug 10 02:13:46 2008
@@ -381,7 +381,7 @@
     var inputs = cartForm.getInputs('text');
     inputs.each(function(e) {
         if(e.id != 'productPromoCode') {
-            Event.observe(e, 'keyup', cartItemQtyChanged);
+            Event.observe(e, 'change', cartItemQtyChanged);
         }
     });
     var removeLinks = cartForm.getElementsByTagName('a');