Implement TextFormatter for posts

Get rid of formatting on user bios, we'll do that with JavaScript
This commit is contained in:
Toby Zerner
2015-07-22 16:03:48 +09:30
parent 6c50f1614b
commit a0fe68272c
15 changed files with 243 additions and 1973 deletions

View File

@ -15,7 +15,7 @@ export default class User extends mixin(Model, {
avatarUrl: Model.attribute('avatarUrl'),
bio: Model.attribute('bio'),
bioHtml: Model.attribute('bioHtml'),
bioHtml: computed('bio', bio => '<p>' + $('<div/>').text(bio).html() + '</p>'),
preferences: Model.attribute('preferences'),
groups: Model.hasMany('groups'),