Commit 5f3a0f515ae7082db52617e561a1eabc8ff94cc2
don't show follow and nudge buttons if you're on your own profile
Ev Bogue committed on 10/17/2017, 11:36:18 PMParent: 9796ea6b79e5352d1c78c5ed6c6028b062703bf4
Files changed
client/modules/avatar-profile.js | changed |
client/modules/edit.js | changed |
client/modules/follow.js | changed |
client/modules/nudge.js | changed |
client/modules/avatar-profile.js | ||
---|---|---|
@@ -22,10 +22,10 @@ | ||
22 | 22 … | console.log('id is: ' + id) |
23 | 23 … | console.log('self_id is: ' + self_id.id) |
24 | 24 … | |
25 | 25 … | if (id == self_id.id) { |
26 | - edit = h('p', h('a', {href: '#Edit'}, 'Edit profile')) | |
27 | - } | |
26 … | + edit = h('p', h('a', {href: '#Edit'}, h('button.btn.btn-primary', 'Edit profile'))) | |
27 … | + } else { edit = api.avatar_action(id)} | |
28 | 28 … | |
29 | 29 … | pull(api.sbot_query({query: [{$filter: { value: { author: id, content: {type: 'about', loc: {"$truthy": true}}}}}], limit: 1, reverse: true}), |
30 | 30 … | pull.drain(function (data){ |
31 | 31 … | if(data.value.content.loc) { |
@@ -47,12 +47,12 @@ | ||
47 | 47 … | loco, |
48 | 48 … | desc, |
49 | 49 … | h('pre', h('code', id)), |
50 | 50 … | edit |
51 | - ), | |
51 … | + )/*, | |
52 | 52 … | h('div.message', |
53 | 53 … | api.avatar_action(id) |
54 | - ) | |
54 … | + )*/ | |
55 | 55 … | ) |
56 | 56 … | } |
57 | 57 … | } |
58 | 58 … |
client/modules/edit.js | ||
---|---|---|
@@ -28,9 +28,9 @@ | ||
28 | 28 … | h('div.column.scroller__content', |
29 | 29 … | h('div.message', |
30 | 30 … | h('h1', 'Edit profile'), |
31 | 31 … | nameInput, |
32 | - h('button', 'Preview', {onclick: function () { | |
32 … | + h('button.btn.btn-primary', 'Preview', {onclick: function () { | |
33 | 33 … | if(nameInput.value) { |
34 | 34 … | api.message_confirm({ |
35 | 35 … | type: 'about', |
36 | 36 … | about: id, |
@@ -39,9 +39,9 @@ | ||
39 | 39 … | } |
40 | 40 … | }}), |
41 | 41 … | h('br'), |
42 | 42 … | locInput, |
43 | - h('button', 'Preview', {onclick: function () { | |
43 … | + h('button.btn.btn-primary', 'Preview', {onclick: function () { | |
44 | 44 … | if(locInput.value) { |
45 | 45 … | api.message_confirm({ |
46 | 46 … | type: 'about', |
47 | 47 … | about: id, |
@@ -50,9 +50,9 @@ | ||
50 | 50 … | } |
51 | 51 … | }}), |
52 | 52 … | h('br'), |
53 | 53 … | imgInput, |
54 | - h('button', 'Preview', {onclick: function () { | |
54 … | + h('button.btn.btn-primary', 'Preview', {onclick: function () { | |
55 | 55 … | if(imgInput.value) { |
56 | 56 … | if (ref.isBlobId(imgInput.value)) { |
57 | 57 … | api.message_confirm({ |
58 | 58 … | type: 'about', |
Built with git-ssb-web