I have an angularUi modal window wrapped in a directive:
html:
I combined the two above answers and made my modal dragable.
.directive('modalWindow', function(){ return { restrict: 'EA', link: function(scope, element) { $(".modal-dialog").draggable(); } } });