0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Remove image related text from meta description.

Closes #4408
This commit is contained in:
Jason Williams 2014-11-07 05:22:34 +00:00
parent 526501fdf7
commit f86847171e

View file

@ -146,7 +146,7 @@ var PostSettingsMenuController = Ember.ObjectController.extend({
// Get rendered markdown // Get rendered markdown
if (el !== undefined && el.length > 0) { if (el !== undefined && el.length > 0) {
html = el.clone(); html = el.clone();
html.find('.image-uploader').remove(); html.find('.js-drop-zone').remove();
html = html[0].innerHTML; html = html[0].innerHTML;
} }