cargar la imagen de placeholder
This commit is contained in:
parent
aabd6f1a5b
commit
434bb4a6f1
2 changed files with 4 additions and 3 deletions
|
@ -87,7 +87,7 @@ const blocks = {
|
||||||
selector: "IMG",
|
selector: "IMG",
|
||||||
createFn: editorEl => {
|
createFn: editorEl => {
|
||||||
const el = document.createElement("IMG")
|
const el = document.createElement("IMG")
|
||||||
el.src = "/public/placeholder.png"
|
el.src = "/placeholder.png"
|
||||||
el.alt = ""
|
el.alt = ""
|
||||||
return el
|
return el
|
||||||
},
|
},
|
||||||
|
@ -118,7 +118,7 @@ const blocks = {
|
||||||
selector: "VIDEO",
|
selector: "VIDEO",
|
||||||
createFn: editorEl => {
|
createFn: editorEl => {
|
||||||
const el = document.createElement("VIDEO")
|
const el = document.createElement("VIDEO")
|
||||||
el.poster = "/public/placeholder.png"
|
el.poster = "/placeholder.png"
|
||||||
// Para poder seleccionar el video tenemos que sacarle los
|
// Para poder seleccionar el video tenemos que sacarle los
|
||||||
// controles, pero queremos poder verlos para reproducir el video.
|
// controles, pero queremos poder verlos para reproducir el video.
|
||||||
// Al hacer click le damos los controles y al salir se los sacamos
|
// Al hacer click le damos los controles y al salir se los sacamos
|
||||||
|
|
|
@ -330,7 +330,7 @@ function cleanNode (node, contentEl) {
|
||||||
if (child.getAttribute("hspace")) child.removeAttribute("hspace")
|
if (child.getAttribute("hspace")) child.removeAttribute("hspace")
|
||||||
if (child.align.length) child.removeAttribute("align")
|
if (child.align.length) child.removeAttribute("align")
|
||||||
if (child.name.length) child.removeAttribute("name")
|
if (child.name.length) child.removeAttribute("name")
|
||||||
if (!child.src.length) child.src = "/public/placeholder.png"
|
if (!child.src.length) child.src = "/placeholder.png"
|
||||||
} else if (child.tagName === "FONT") {
|
} else if (child.tagName === "FONT") {
|
||||||
moveChildren(child, child.parentElement, child.nextSiling)
|
moveChildren(child, child.parentElement, child.nextSiling)
|
||||||
child.parentElement.removeChild(child)
|
child.parentElement.removeChild(child)
|
||||||
|
@ -429,6 +429,7 @@ function setupEditor (editorEl) {
|
||||||
|
|
||||||
const editorBtn = id => editorEl.querySelector(`*[data-button="${id}"]`)
|
const editorBtn = id => editorEl.querySelector(`*[data-button="${id}"]`)
|
||||||
|
|
||||||
|
// XXX: Por qué está duplicada de types.js esta función?
|
||||||
const tagNameSetFn = tagName => el => {
|
const tagNameSetFn = tagName => el => {
|
||||||
const newEl = document.createElement(tagName)
|
const newEl = document.createElement(tagName)
|
||||||
moveChildren(el, newEl, null)
|
moveChildren(el, newEl, null)
|
||||||
|
|
Loading…
Reference in a new issue