Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

event error and fix

Questions related to using nuBuilder Forte.
Post Reply
apmuthu
Posts: 249
Joined: Sun Dec 06, 2020 6:50 am
Location: Chennai, India, Singapore

event error and fix

Unread post 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();
kev1n
nuBuilder Team
Posts: 4307
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 448 times
Contact:

Re: event error and fix

Unread post by kev1n »

This is fixed in 4.5 now.
Post Reply