aboutsummaryrefslogtreecommitdiff
path: root/lib/serve.js
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-12-26 14:09:37 -1000
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-12-26 14:09:37 -1000
commit0c6c333f1c7b9c3ab062d26a4b2541de055307f6 (patch)
tree48517c81acd3341741539968aae4c8cc7cf4b592 /lib/serve.js
parente6c57e42071b9b49737c820a3cdfd14cd4864ce3 (diff)
downloadpatchfoo-0c6c333f1c7b9c3ab062d26a4b2541de055307f6.tar.gz
patchfoo-0c6c333f1c7b9c3ab062d26a4b2541de055307f6.zip
Use textarea for code blocks
Diffstat (limited to 'lib/serve.js')
-rw-r--r--lib/serve.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/serve.js b/lib/serve.js
index 76b3a8c..766b524 100644
--- a/lib/serve.js
+++ b/lib/serve.js
@@ -2433,10 +2433,6 @@ Serve.prototype.wrapMyChannels = function (opts) {
})
}
-function rows(str) {
- return String(str).split(/[^\n]{150}|\n/).length
-}
-
Serve.prototype.composer = function (opts, cb) {
var self = this
opts = opts || {}
@@ -2551,7 +2547,7 @@ Serve.prototype.composer = function (opts, cb) {
h('textarea', {
id: opts.id,
name: 'text',
- rows: Math.max(4, rows(data.text)),
+ rows: Math.max(4, u.rows(data.text)),
cols: 70,
placeholder: opts.placeholder || 'public message',
}, data.text || ''),