jakiestfu / Medium.js

A tiny JavaScript library for making contenteditable beautiful (Like Medium's editor)

Home Page:http://jakiestfu.github.io/Medium.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Double click to edit

el-quick opened this issue · comments

Please add a custom option to enable edition on click or doble click.

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.

Maybe this will work:

el.addEventListener('dblclick', function elDblClick() {
  el.removeEventListener('dblclick', elDblClick);
  new Medium({ element: el });
});