Chrome 58 cannot select image

This commit is contained in:
lealife
2017-05-19 11:50:50 +08:00
parent f9b4ead6be
commit 6dc334ca51
11 changed files with 250 additions and 30 deletions

View File

@ -776,7 +776,8 @@ define("tinymce/util/Quirks", [
// Needs to be the setBaseAndExtend or it will fail to select floated images
if (/^(IMG|HR)$/.test(target.nodeName)) {
e.preventDefault();
selection.getSel().setBaseAndExtent(target, 0, target, 1);
// selection.getSel().setBaseAndExtent(target, 0, target, 1);
selection.select(target);
editor.nodeChanged();
}