stuff
This commit is contained in:
parent
d1fc8ea88c
commit
275ca4ab4f
|
@ -3292,7 +3292,7 @@
|
|||
else BDFDB.LibraryModules.ContextMenuUtils.closeContextMenu();
|
||||
};
|
||||
BDFDB.ContextMenuUtils.createItemId = function (...strings) {
|
||||
return strings.filter(s => typeof s == "string").map(s => s.toLowerCase().replace(/\s/, "-")).join("-");
|
||||
return strings.map(s => typeof s == "number" ? s.toString() : s).filter(s => typeof s == "string").map(s => s.toLowerCase().replace(/\s/, "-")).join("-");
|
||||
};
|
||||
|
||||
BDFDB.TimeUtils = {};
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue