Author: surajk
Date: Sat Apr 27 16:36:43 2019
New Revision: 1858289
URL:
http://svn.apache.org/viewvc?rev=1858289&view=revLog:
Fixed: Shortkeys missing on WebPOS.
(OFBIZ-10961)
It was broken after jQuery update on rev #1850712.
Thanks Padmavati Rawat for reporting and Rohit Koushal for providing the patch.
Modified:
ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/images/js/WebPosHotkeys.js
Modified: ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/images/js/WebPosHotkeys.js
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/images/js/WebPosHotkeys.js?rev=1858289&r1=1858288&r2=1858289&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/images/js/WebPosHotkeys.js (original)
+++ ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/images/js/WebPosHotkeys.js Sat Apr 27 16:36:43 2019
@@ -1,7 +1,7 @@
WebPosHotkeys = {
hotkeys: [],
- bind: function (type, data, fnCode, fn, label) {
+ on: function (type, data, fnCode, fn, label) {
var arr = [type, data, fnCode, fn, label];
this.hotkeys.push(arr);
}