FIX: decorateCooked was not being applied to embedded posts

This commit is contained in:
Robin Ward
2015-06-01 11:58:17 -04:00
parent 81a699e2b0
commit b2a7411620
4 changed files with 10 additions and 12 deletions

View File

@ -11,6 +11,6 @@ export function decorateCooked(container, cb) {
decorate(postView, 'postViewInserted', cb);
decorate(postView, 'postViewUpdated', cb);
decorate(container.lookupFactory('view:composer'), 'previewRefreshed', cb);
decorate(container.lookupFactory('view:embedded-post'), 'previewRefreshed', cb);
decorate(container.lookupFactory('view:embedded-post'), 'didInsertElement', cb);
decorate(container.lookupFactory('view:user-stream'), 'didInsertElement', cb);
}