Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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: 4564
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 76 times
Been thanked: 529 times
Contact:

Re: event error and fix

Unread post by kev1n »

This is fixed in 4.5 now.
Post Reply