Author: surajk
Date: Sat Apr 27 16:40:08 2019
New Revision: 1858290
URL:
http://svn.apache.org/viewvc?rev=1858290&view=revLog:
Applied fix from trunk for revision: 1858289
===
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/branches/release18.12/ (props changed)
ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/images/js/WebPosHotkeys.js
Propchange: ofbiz/ofbiz-plugins/branches/release18.12/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Apr 27 16:40:08 2019
@@ -10,4 +10,4 @@
/ofbiz/branches/json-integration-refactoring/plugins:1634077-1635900
/ofbiz/branches/multitenant20100310/plugins:921280-927264
/ofbiz/branches/release13.07/plugins:1547657
-/ofbiz/ofbiz-plugins/trunk:1851002,1851009,1851068,1851135,1851139-1851140,1851185,1851316,1851885,1852988,1853904,1854684,1855082,1855084,1856212,1856802,1856917,1857120,1857173,1858141,1858244,1858265,1858285
+/ofbiz/ofbiz-plugins/trunk:1851002,1851009,1851068,1851135,1851139-1851140,1851185,1851316,1851885,1852988,1853904,1854684,1855082,1855084,1856212,1856802,1856917,1857120,1857173,1858141,1858244,1858265,1858285,1858289
Modified: ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/images/js/WebPosHotkeys.js
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/images/js/WebPosHotkeys.js?rev=1858290&r1=1858289&r2=1858290&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/images/js/WebPosHotkeys.js (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/images/js/WebPosHotkeys.js Sat Apr 27 16:40:08 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);
}