media_bbc: Actually return makeMediaHtml
This commit is contained in:
parent
fbb808198d
commit
0a17f270b2
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@
|
||||||
return htmlToBBCode(element, content, 'video');
|
return htmlToBBCode(element, content, 'video');
|
||||||
},
|
},
|
||||||
html: function (token, attrs, content) {
|
html: function (token, attrs, content) {
|
||||||
makeMediaHtml(content, 'video');
|
return makeMediaHtml(content, 'video');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
return htmlToBBCode(element, content, 'audio');
|
return htmlToBBCode(element, content, 'audio');
|
||||||
},
|
},
|
||||||
html: function (token, attrs, content) {
|
html: function (token, attrs, content) {
|
||||||
makeMediaHtml(content, 'audio');
|
return makeMediaHtml(content, 'audio');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue