@natlibfi/melinda-ui-commons
Version:
Common modules for Melinda UI applications
26 lines (18 loc) • 799 B
JavaScript
//****************************************************************************//
// //
// Utilities for UI //
// //
//****************************************************************************//
//-----------------------------------------------------------------------------
// Handling and ignoring event
//-----------------------------------------------------------------------------
export function eventHandled(event) {
if (event) {
event.stopPropagation();
event.preventDefault();
}
return true;
}
export function ignore(event) {
return eventHandled(event);
}