Double click to edit
el-quick opened this issue · 2 comments
el-quick commented
Please add a custom option to enable edition on click or doble click.
jakiestfu commented
Couldn't you attach your own double click handler that will instantiate Medium and focus in the field? This seems like auxiliary logic that doesn't belong in Medium.
robertleeplummerjr commented
Maybe this will work:
el.addEventListener('dblclick', function elDblClick() {
el.removeEventListener('dblclick', elDblClick);
new Medium({ element: el });
});