nuBindCtrlEvents() - missing handlers
Posted: Mon Aug 20, 2018 4:49 pm
Hi,
There is no handler for CTRL + SHIFT + L in nuBindCtrlEvents(), which is probably the least important shortcut
This should do it:
and no handler for CTRL + SHIFT + ? (Help)
There is no handler for CTRL + SHIFT + L in nuBindCtrlEvents(), which is probably the least important shortcut

This should do it:
Code: Select all
} else if(e.keyCode == 76) { //-- l Delete
nuPopup("nupassword", nuFORM.getProperty('user_id'), "")
}
Code: Select all
} else if(e.keyCode == 191) { //-- ? Help
// some code here ...
}