I'm using the following code to move bootstrap windows:
$('#divform').modal({
keyboard: false,
show: true
});
//Jquery draggable
$('#divform').draggable({
handle: ".modal-header"
});
That is, I have to make use of explicit jquery to move the window, I would like to know if the bootstrap gives this feature without needing jquery.