Update UIContextMenu.js

This commit is contained in:
Nariman Jelveh 2024-06-16 19:00:53 -07:00
parent 4ef6fd6148
commit f185c02f4c

View File

@ -141,7 +141,7 @@ function UIContextMenu(options){
if ( options?.delay === false) { if ( options?.delay === false) {
$(contextMenu).show(0); $(contextMenu).show(0);
} else if(options?.delay === true || options?.delay === 1 || options?.delay === undefined) { } else if(options?.delay === true || options?.delay === 1 || options?.delay === undefined) {
$(contextMenu).fadeIn(80).show(0); $(contextMenu).fadeIn(50).show(0);
} else { } else {
$(contextMenu).fadeIn(options?.delay).show(0); $(contextMenu).fadeIn(options?.delay).show(0);
} }