Commit 20e18a424acad66e1f6e83ad1aa129f2fabdbb0d
show name and current avatar on profile page
Dominic Tarr committed on 7/24/2016, 2:23:59 AMParent: 6200cdd535433e85ea74c0c9b081b40ecfadc318
Files changed
modules/avatar-profile.js | changed |
modules/avatar-profile.js | ||
---|---|---|
@@ -2,10 +2,12 @@ | ||
2 | 2 | var plugs = require('../plugs') |
3 | 3 | |
4 | 4 | var avatar_image = plugs.first(exports.avatar_image = []) |
5 | 5 | var avatar_action = plugs.map(exports.avatar_action = []) |
6 | +var avatar_edit = plugs.first(exports.avatar_edit = []) | |
6 | 7 | |
7 | 8 | exports.avatar_profile = function (id) { |
9 | + return avatar_edit(id) | |
8 | 10 | |
9 | 11 | return h('div.row.profile', |
10 | 12 | avatar_image(id), |
11 | 13 | h('div.column', avatar_action(id)) |
Built with git-ssb-web