0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00

Merge pull request #4410 from jaswilli/issue-4408

Remove image related text from meta description.
This commit is contained in:
Hannah Wolfe 2014-11-09 21:27:05 +00:00
commit 67a5f6cd0a

View file

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