In my AngularJS application, I am endeavoring to create non-modal dialogs without the use of Bootstrap modal.
Instead, I am seeking to develop a draggable dialog that remains active while allowing interaction with the background (non-modal).
Although I have experimented with Bootstrap modal, it does not align with this specific requirement.
I came across a library called https://github.com/jwstadler/angular-jquery-dialog-service, which seems to be exactly what I need. However, it utilizes JQuery-UI, which is too large for my purposes.
Are there any suggestions on achieving this functionality with minimal dependencies?
EDIT (20 August, 2014): I ultimately resorted to writing custom JavaScript code for non-modal dialogs, and everything is functioning as desired.
EDIT (28 April, 2015): Since I cannot post the solution here, I will treat this page as a collection of insights rather than an answer to my own query.