Commit 21cbbd25 by Иван Кубота

fx

parent a4caf83a
...@@ -337,10 +337,16 @@ Screen.Conference = function() { ...@@ -337,10 +337,16 @@ Screen.Conference = function() {
D.h('button', { D.h('button', {
cls: ['button primary', {nothing: Store.NOT(Store.OR(isConnected, isConnecting))}], cls: ['button primary', {nothing: Store.NOT(Store.OR(isConnected, isConnecting))}],
onclick: ()=>{ onclick: function(){
var _self = this;
store.set('connection', false); store.set('connection', false);
_self.style.display = 'none';
setTimeout(function( ){ setTimeout(function( ){
store.set('connection', true); store.set('connection', true);
setTimeout(function() {
_self.style.display = 'block';
}, 300)
}, 300); }, 300);
} }
}, 'Reconnect'), }, 'Reconnect'),
......
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