// FIX: Ctrl + clicking a button will not disable the click event
function nuStopClick(e){
if(window.nuCLICKER != '' && e.ctrlKey == false ){
$(e.target).prop('onclick',null).off('click');
}
}
nuSelectBrowse = function (e, t){} //-- so that it doesn't run twice.
if (e.ctrlKey == false) {
nuSelectBrowse = function (e, t) {} //-- so that it doesn't run twice.
}
kev1n wrote:Change:
- Code: Select all
nuSelectBrowse = function (e, t){} //-- so that it doesn't run twice.
To:
- Code: Select all
if (e.ctrlKey == false) {
nuSelectBrowse = function (e, t) {} //-- so that it doesn't run twice.
}
Here:
https://github.com/steven-copley/nubuil ... m.js#L3771
By changing that, you can open as many records from a Browse Screen as you want.
@Steven: Could you include that?