Commit 603305f3 by Иван Кубота

reconnect

parent ae90106b
......@@ -336,6 +336,16 @@ Screen.Conference = function() {
}, 'Ready to connect'),
D.h('button', {
cls: ['button primary', {nothing: Store.NOT(Store.OR(isConnected, isConnecting))}],
onclick: ()=>{
store.set('connection', false);
setTimeout(function( ){
store.set('connection', false);
}, 300);
}
}, 'Reconnect'),
D.h('button', {
cls: ['button orange', {hidden: /*isConnected*/false}],
onclick: ()=>{
store.set('connection', false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment