git ssb

16+

Dominic / patchbay



Commit 0c7c89c264ab3e6d244b7d654ef4b82d9aba00b8

enable private messages in lite client, switch command bar text

Ev Bogue committed on 11/6/2016, 8:01:43 PM
Parent: 2227f2f14f1094019ceb5e1cb1a8254841c2fe9e

Files changed

modules/private.jschanged
modules/search-box.jschanged
style.csschanged
modules/private.jsView
@@ -27,10 +27,10 @@
2727
2828 exports.screen_view = function (path) {
2929
3030 if(path === '/private') {
31- if(process.title === 'browser')
32- return h('div', h('h4', 'Private messages are not supported in the lite client.'))
31 + //if(process.title === 'browser')
32 + //return h('div', h('h4', 'Private messages are not supported in the lite client.'))
3333
3434
3535 var id = require('../keys').id
3636 var compose = message_compose(
modules/search-box.jsView
@@ -23,9 +23,9 @@
2323
2424 var suggestBox
2525 var search = h('input.searchprompt', {
2626 type: 'search',
27- placeholder: '?word, @key, #channel',
27 + placeholder: 'Commands',
2828 onkeydown: function (ev) {
2929 switch (ev.keyCode) {
3030 case 13: // enter
3131 if (suggestBox && suggestBox.active) {
style.cssView
@@ -183,9 +183,9 @@
183183 margin-top: .25em;
184184 margin-bottom: .25em;
185185 padding: .2em;
186186 border-top: 1px solid #f5f5f5;
187- border-bottom: 1px solid #f5f5f5;
187 + // border-bottom: 1px solid #f5f5f5;
188188 background: white;
189189 }
190190
191191 .message:hover {

Built with git-ssb-web