The following Draggable mixin works:
rml`
<div class="container" onmouseover="${hov}" ...${Draggable()} >
`;
However, it gets ignored when interpolated attributes (like foo="${bar}") are placed after it:
rml`
<div class="container" ...${Draggable()} foo="${bar}">
`;
Check regexes and the logic in the parser
The following
Draggablemixin works:However, it gets ignored when interpolated attributes (like
foo="${bar}") are placed after it:Check regexes and the logic in the parser