diff options
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r-- | lib/render-msg.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index d21f095..2e20d2f 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -1790,6 +1790,11 @@ RenderMsg.prototype.poll = function (cb) { h('p', 'reason: ', h('div', h('textarea', {name: 'poll_reason'})) ), + u.toArray(this.opts.branches).filter(function (branch) { + return branch !== self.msg.key + }).map(function (branch) { + return h('input', {type: 'hidden', name: 'branches', value: branch}) + }), h('p', h('input', {type: 'submit', value: 'preview publish position'})) ) : h('div', 'unknown poll type') ), cb) |