Merge pull request #1632 from ether/enable-buttons-reconnect
Enable buttons reconnect
This commit is contained in:
commit
755965d904
|
@ -76,7 +76,6 @@ var padconnectionstatus = (function()
|
||||||
},
|
},
|
||||||
isFullyConnected: function()
|
isFullyConnected: function()
|
||||||
{
|
{
|
||||||
padmodals.hideOverlay();
|
|
||||||
return status.what == 'connected';
|
return status.what == 'connected';
|
||||||
},
|
},
|
||||||
getStatus: function()
|
getStatus: function()
|
||||||
|
|
|
@ -40,22 +40,10 @@ var padmodals = (function()
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
showOverlay: function(duration) {
|
showOverlay: function(duration) {
|
||||||
$("#overlay").show().css(
|
$("#overlay").show();
|
||||||
{
|
|
||||||
'opacity': 0
|
|
||||||
}).animate(
|
|
||||||
{
|
|
||||||
'opacity': 1
|
|
||||||
}, duration);
|
|
||||||
},
|
},
|
||||||
hideOverlay: function(duration) {
|
hideOverlay: function(duration) {
|
||||||
$("#overlay").animate(
|
$("#overlay").hide();
|
||||||
{
|
|
||||||
'opacity': 0
|
|
||||||
}, duration, function()
|
|
||||||
{
|
|
||||||
$("#modaloverlay").hide();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return self;
|
return self;
|
||||||
|
|
Loading…
Reference in New Issue