Vishmita Jadeja (openerp) has proposed merging 
lp:~openerp-dev/openobject-addons/trunk-bug-911100-vja into 
lp:openobject-addons.

Requested reviews:
  Nicolas Vanhoren (OpenERP) (niv-openerp)
Related bugs:
  Bug #911100 in OpenERP Web: "[POS]: qty,disc,price buttons not working in pos"
  https://bugs.launchpad.net/openerp-web/+bug/911100

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-911100-vja/+merge/87449

Firefox uses W3C standard Node::textContent
innerText is non-standard, it significantly differs from textContent.
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-911100-vja/+merge/87449
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/trunk-bug-911100-vja.
=== modified file 'point_of_sale/static/src/js/pos.js'
--- point_of_sale/static/src/js/pos.js	2012-01-03 10:37:16 +0000
+++ point_of_sale/static/src/js/pos.js	2012-01-04 10:04:16 +0000
@@ -591,7 +591,7 @@
         },
         clickAppendNewChar: function(event) {
             var newChar;
-            newChar = event.currentTarget.innerText;
+            newChar = event.currentTarget.innerText || event.currentTarget.textContent;
             return this.state.appendNewChar(newChar);
         },
         clickChangeMode: function(event) {

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to