|
|
|
@ -16,7 +16,7 @@ function ImageLayer2(props) {
|
|
|
|
|
const imageSrc = event.target.src || event.target.getAttribute('src') || event.target.getAttribute('href')
|
|
|
|
|
// 判断imageSrc是否是图片
|
|
|
|
|
const fileName = event.target.innerHTML.trim()
|
|
|
|
|
if (isImageExtension(imageSrc.trim()) || isImageExtension(fileName) || event.target.tagName == 'IMG' || imageSrc.indexOf('base64,') != -1) {
|
|
|
|
|
if (isImageExtension((imageSrc && imageSrc.trim())) || isImageExtension(fileName) || event.target.tagName == 'IMG' || (imageSrc && imageSrc.indexOf('base64,')) != -1) {
|
|
|
|
|
// 非回复里的头像图片; 非emoticons
|
|
|
|
|
if (imageSrc.indexOf('/images/avatars/User') === -1 &&
|
|
|
|
|
imageSrc.indexOf('kindeditor/plugins/emoticons') === -1 ) {
|
|
|
|
|