finish delete recording feature

This commit is contained in:
Zachary Chai
2016-11-08 16:03:24 -05:00
parent 93b5e9a1b3
commit 83bdf4c387
8 changed files with 68 additions and 16 deletions

View File

@ -76,3 +76,18 @@ var loopJoin = function() {
console.info("meeting join failed");
});
}
var showAlert = function(html, timeout_delay) {
if (!html) {
return;
}
$('.alert-template .alert-message').html(html);
$('#alerts').html($('.alert-template').html());
if (timeout_delay) {
setTimeout(function() {
$('#alerts > .alert').alert('close');
}, timeout_delay);
}
}