git ssb

0+

ev / microbay



forked from Dominic / patchbay

Commit 456cb2f76b87d671597f92551d4983898b2190b1

Merge branch 'master' of https://github.com/gwenbell/patchbay

Dominic Tarr committed on 7/21/2016, 5:04:29 AM
Parent: a7ef3c501253ab660f08e0fe26bb9360e16f6d6a
Parent: fe033cc24951324c4778e7703e97045acde225f5

Files changed

modules/compose.jschanged
modules/private.jschanged
style.csschanged
modules/compose.jsView
@@ -84,9 +84,9 @@
8484 var embed = file.type.indexOf('image/') === 0 ? '!' : ''
8585 ta.value += embed + '['+file.name+']('+file.link+')'
8686 console.log('added:', file)
8787 }),
88- h('button', 'publish', {onclick: publish}))
88+ h('button', 'Publish', {onclick: publish}))
8989 )
9090 )
9191
9292 suggest(ta, function (word, cb) {
modules/private.jsView
@@ -27,9 +27,9 @@
2727 exports.screen_view = function (path) {
2828
2929 if(path === '/private') {
3030 if(process.title === 'browser')
31- return h('div', h('h1', 'private messages not currently supported'))
31+ return h('div', h('h4', 'Private messages are not supported in the lite client.'))
3232
3333
3434 var id = require('../keys').id
3535 var compose = message_compose(
@@ -38,9 +38,9 @@
3838 msg.recps = [id].concat(msg.mentions).filter(function (e) {
3939 return ref.isFeed('string' === typeof e ? e : e.link)
4040 })
4141 if(!msg.recps.length)
42- throw new Error('cannot make private message without recipients - just mention them in the message')
42+ throw new Error('cannot make private message without recipients - just mention the user in an at reply in the message you send')
4343 return msg
4444 })
4545
4646 var content = h('div.column.scroller__content')
style.cssView
@@ -45,9 +45,9 @@
4545 }
4646
4747
4848 img {
49- max-width: 600px;
49+ max-width: 100%;
5050 display: block;
5151 }
5252
5353 pre {

Built with git-ssb-web