Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Close Twitter Bootbox after x seconds

Is it possible to close a twitter bootbox after 10 seconds?! i open it like this:

bootbox.confirm("{{$steps[0]}}","accept","decline" ,function(result) {
    if (result) {

    }
}); 
like image 308
davidOhara Avatar asked Jul 20 '13 12:07

davidOhara


1 Answers

This code will close the open bootbox automatically after 10 seconds.

window.setTimeout(function(){
    bootbox.hideAll();
}, 10000); // 10 seconds expressed in milliseconds

See the documentation here

like image 87
Scott Avatar answered Sep 30 '22 07:09

Scott