Commit 4900bfb0b9703e05ea09ad735590650aa536d492
fix compose
Ev Bogue committed on 3/13/2019, 10:27:46 PMParent: 97b67017a4dd029fc7f64c7bc120a90451c6e24b
Files changed
compose.js | changed |
compose.js | |||
---|---|---|---|
@@ -122,9 +122,8 @@ | |||
122 | 122 … | ||
123 | 123 … | if (opts.recps) | |
124 | 124 … | msg.value.private = true | |
125 | 125 … | ||
126 | - console.log(msg) | ||
127 | 126 … | if (opts.type == 'post') | |
128 | 127 … | var header = tools.header(msg) | |
129 | 128 … | if (opts.root) | |
130 | 129 … | var rootMsg = h('span', 're: ', tools.messageLink(opts.root)) | |
@@ -142,21 +141,21 @@ | |||
142 | 141 … | console.log('Published!', msg) | |
143 | 142 … | if (opts.type == 'edit') { | |
144 | 143 … | var message = document.getElementById(opts.branch.substring(0,44)) | |
145 | 144 … | fallback.messageText = msg.value.content.text | |
146 | - var editBody = h('div.messageContent', | ||
145 … | + var editBody = h('div.message__body', | ||
147 | 146 … | tools.timestamp(msg, {edited: true}), | |
148 | 147 … | h('div', tools.markdown(msg.value.content.text)) | |
149 | 148 … | ) | |
150 | - | ||
151 | - message.replaceChild(editBody, message.firstChild.childNodes[message.childNodes.length - 1]) | ||
149 … | + | ||
150 … | + message.firstChild.replaceChild(editBody, message.firstChild.childNodes[message.childNodes.length - 1]) | ||
152 | 151 … | editBody.parentNode.appendChild(fallback.buttons) | |
153 | 152 … | } else { | |
154 | 153 … | if (opts.branch) | |
155 | 154 … | cancel = document.getElementById('re:' + opts.branch.substring(0,44)) | |
156 | 155 … | else | |
157 | 156 … | cancel = document.getElementById('composer') | |
158 | - cancel.parentNode.removeChild(cancel) | ||
157 … | + cancel.parentNode.removeChild(cancel) | ||
159 | 158 … | } | |
160 | 159 … | }) | |
161 | 160 … | } | |
162 | 161 … | } |
Built with git-ssb-web