event error and fix
Posted: Mon Jan 11, 2021 7:15 am
In nucommon.js in both v4 and v4.5, the browser console yields an error on missing event that is fixed at:
replacing it with:
Code: Select all
function nuDragBrowseColumn(e, p){
event.preventDefault();
Code: Select all
function nuDragBrowseColumn(e, p){
e.preventDefault();