FIX: Trim the profile text in the user card even if it has multiple lines.

This commit is contained in:
Robin Ward
2014-11-03 11:59:29 -05:00
parent fd5677808c
commit bab4f48eeb
5 changed files with 36 additions and 6 deletions

View File

@ -0,0 +1,9 @@
export default Ember.Component.extend({
_parse: function() {
this.$().ellipsis();
}.on('didInsertElement'),
render: function(buffer) {
buffer.push(this.get('text'));
}
});