fix simul watchers

pull/5590/head
Thibault Duplessis 2019-10-18 07:35:03 +02:00
parent e06b0fe18c
commit d1db1beda3
1 changed files with 5 additions and 1 deletions

View File

@ -20,6 +20,10 @@ module.exports = function(ctrl) {
}
}),
m('div.simul__main.box', handler(ctrl)),
m('div.chat__members.none', m('span.list'))
m('div.chat__members.none', {
config(el, done) {
if (!done) $(el).watchers();
}
}, m('span.list'))
];
};