mirror of
https://gitee.com/openharmony/applications_notes
synced 2024-11-27 01:30:27 +00:00
commit
173612e12c
@ -82,14 +82,12 @@ RICH_EDITOR.getListStyle = function () {
|
|||||||
if (child.nodeName === 'OL') {
|
if (child.nodeName === 'OL') {
|
||||||
console.info('insertOrderedList');
|
console.info('insertOrderedList');
|
||||||
document.execCommand('insertOrderedList', false, null);
|
document.execCommand('insertOrderedList', false, null);
|
||||||
child.style['list-style'];
|
return child.style['list-style'];
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
if (child.nodeName === 'UL') {
|
if (child.nodeName === 'UL') {
|
||||||
console.info('insertUnorderedList');
|
console.info('insertUnorderedList');
|
||||||
document.execCommand('insertUnorderedList', false, null);
|
document.execCommand('insertUnorderedList', false, null);
|
||||||
child.style['list-style'];
|
return child.style['list-style'];
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
if (child.parentNode) {
|
if (child.parentNode) {
|
||||||
child = child.parentNode;
|
child = child.parentNode;
|
||||||
@ -458,7 +456,6 @@ RICH_EDITOR.insertImageHtml = function (contents) {
|
|||||||
let img = document.createElement('img');
|
let img = document.createElement('img');
|
||||||
img.src = contents;
|
img.src = contents;
|
||||||
selection.getRangeAt(0).insertNode(img);
|
selection.getRangeAt(0).insertNode(img);
|
||||||
return;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
document.addEventListener('click', (e) => {
|
document.addEventListener('click', (e) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user