Commit 1be94375 authored by Neil Fraser's avatar Neil Fraser

Support content editable (issue 113).

parent 917aa341
......@@ -241,7 +241,8 @@ Blockly.isTargetInput_ = function(e) {
return e.target.type == 'textarea' || e.target.type == 'text' ||
e.target.type == 'number' || e.target.type == 'email' ||
e.target.type == 'password' || e.target.type == 'search' ||
e.target.type == 'tel' || e.target.type == 'url';
e.target.type == 'tel' || e.target.type == 'url' ||
e.target.isContentEditable;
};
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment