This commit is contained in:
Mirco Wittrien 2020-05-19 15:39:35 +02:00
parent 1fb79ddd04
commit de3f1c0d67
2 changed files with 4 additions and 1 deletions

View File

@ -3291,6 +3291,9 @@
if (BDFDB.ObjectUtils.is(instance) && instance.props && typeof instance.props.closeContextMenu == "function") instance.props.closeContextMenu();
else BDFDB.LibraryModules.ContextMenuUtils.closeContextMenu();
};
BDFDB.ContextMenuUtils.createItemId = function (name, id) {
return `${(typeof name == "string" ? name : "").toLowerCase().replace(/\s/, "-")}-${(typeof id == "string" ? id : "").toLowerCase().replace(/\s/, "-")}`;
};
BDFDB.TimeUtils = {};
BDFDB.TimeUtils.interval = function (callback, delay, ...args) {

File diff suppressed because one or more lines are too long