0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Merge pull request #3934 from PaulAdamDavis/fix-cover-image

Fix user cover images
This commit is contained in:
Hannah Wolfe 2014-09-02 16:33:00 +01:00
commit 254d890dec

View file

@ -23,7 +23,7 @@ var SettingsUserController = Ember.ObjectController.extend({
if (Ember.isBlank(cover)) {
cover = this.get('coverDefault');
}
return cover;
return 'background-image: url(' + cover + ')';
}),
coverTitle: Ember.computed('user.name', function () {