Page 1 of 1

event error and fix

Posted: Mon Jan 11, 2021 7:15 am
by apmuthu
In nucommon.js in both v4 and v4.5, the browser console yields an error on missing event that is fixed at:

Code: Select all

function nuDragBrowseColumn(e, p){

	event.preventDefault();
replacing it with:

Code: Select all

function nuDragBrowseColumn(e, p){

	e.preventDefault();

Re: event error and fix

Posted: Mon Jan 11, 2021 10:18 am
by kev1n
This is fixed in 4.5 now.