I am trying to create non-modal dialogs in my AngularJS app.
The app uses Bootstrap as well.
I am trying to create a draggable dialog, which remains active while the rest of the background can be interacted with (non-modal definition).
So, far I have played with Bootstrap modal which doesn't fit in with the above requirement.
This library: https://github.com/jwstadler/angular-jquery-dialog-service
is exactly what I need, with one drawback this uses JQuery-UI (which I can't use, as it is too big)
Any pointers on how to achieve this with least dependencies ?
EDIT (20 August, 2014): I ended up writing javascript code for the non modal dialogs, all working good as required.
EDIT (28 April, 2015): Since, I can not post the answer here to my own question. This page should be seen just as findings.