git ssb

16+

Dominic / patchbay



Commit 74fe7cba24a1be16ab96edeb828f80c1740bef44

right aligned Publish button

Joran committed on 12/18/2016, 1:41:06 AM
Parent: 9746cd345f014701f5911b233fe5aec3e3c52edb

Files changed

modules_basic/compose.jschanged
modules_basic/private.jschanged
modules_basic/compose.jsView
@@ -117,12 +117,12 @@
117117 }
118118 }
119119
120120
121- var publishBtn = h('button.btn', 'Publish', {onclick: publish})
121 + var publishBtn = h('button.btn.btn-default.pull-right', 'Publish', {onclick: publish})
122122 var composer =
123123 h('div.compose', h('div.column', ta,
124- accessories = h('div.row.compose__controls',
124 + accessories = h('div.compose__controls',
125125 //hidden until you focus the textarea
126126 {style: {display: opts.shrink === false ? '' : 'none'}},
127127 api.file_input(function (file) {
128128 files.push(file)
modules_basic/private.jsView
@@ -99,9 +99,9 @@
9999
100100 message_meta: function (msg) {
101101 if(msg.value.content.recps || msg.value.private)
102102 return h('span.row', 'PRIVATE', map(msg.value.content.recps, function (id) {
103- return api.avatar_image_link('string' == typeof id ? id : id.link, 'thumbnail')
103 + return api.avatar_image_link('string' == typeof id ? id : id.link, 'avatar')
104104 }))
105105 },
106106
107107 message_content_mini: function (msg, sbot) {
@@ -114,5 +114,4 @@
114114 }
115115 }
116116
117117 }
118-

Built with git-ssb-web