Same with timeout

This commit is contained in:
Jiiks 2015-10-31 23:28:09 +02:00
parent 60fdc8ccc4
commit e93db396f3
1 changed files with 6 additions and 2 deletions

View File

@ -721,9 +721,13 @@ function VoiceMode() {
}
VoiceMode.prototype.obsCallback = function() {
var self = this;
if(settingsCookie["bda-gs-4"]) {
this.disable();
this.enable();
self.disable();
setTimeout(function() {
self.enable();
}, 200);
}
}