Commit faff13634c588cefcf2eb96c97d4555af8886070
fix window title, background color, etc
Matt McKegg committed on 10/28/2016, 4:15:47 AMParent: ae5bfa9b4595903057ca893ce6ab0e0d282659a1
Files changed
index.js | changed |
views/public-feed.js | changed |
index.js | ||
---|---|---|
@@ -57,11 +57,11 @@ | ||
57 | 57 … | minWidth: 800, |
58 | 58 … | width: 1024, |
59 | 59 … | height: 768, |
60 | 60 … | titleBarStyle: 'hidden-inset', |
61 | - title: 'Ferment', | |
61 … | + title: 'Patchwork', | |
62 | 62 … | show: true, |
63 | - backgroundColor: '#444', | |
63 … | + backgroundColor: '#EEE', | |
64 | 64 … | webPreferences: { |
65 | 65 … | experimentalFeatures: true |
66 | 66 … | }, |
67 | 67 … | icon: './ferment-logo.png' |
views/public-feed.js | ||
---|---|---|
@@ -113,22 +113,21 @@ | ||
113 | 113 … | // Scroller(div, content, message_render, false, false) |
114 | 114 … | // ) |
115 | 115 … | |
116 | 116 … | return div |
117 … | + } | |
117 | 118 … | |
118 | - // scoped | |
119 | - | |
120 | - function refresh () { | |
121 | - pull( | |
122 | - sbot_log({reverse: true, limit: 500, live: false}), | |
123 | - pull.collect((err, values) => { | |
124 | - if (err) throw err | |
125 | - events.set(groupMessages(values)) | |
126 | - sync.set(true) | |
127 | - updates.set(0) | |
128 | - }) | |
129 | - ) | |
130 | - } | |
119 … | + // scoped | |
120 … | + function refresh () { | |
121 … | + pull( | |
122 … | + sbot_log({reverse: true, limit: 500, live: false}), | |
123 … | + pull.collect((err, values) => { | |
124 … | + if (err) throw err | |
125 … | + events.set(groupMessages(values)) | |
126 … | + sync.set(true) | |
127 … | + updates.set(0) | |
128 … | + }) | |
129 … | + ) | |
131 | 130 … | } |
132 | 131 … | } |
133 | 132 … | |
134 | 133 … | function person (id) { |
Built with git-ssb-web