AngularUI modal to be draggable and resizable

前端 未结 6 507
逝去的感伤
逝去的感伤 2021-02-04 02:19

I have an angularUi modal window wrapped in a directive:

html:



  
    

        
6条回答
  •  暖寄归人
    2021-02-04 02:52

    I combined the two above answers and made my modal dragable.

    .directive('modalWindow', function(){
      return {
        restrict: 'EA',
        link: function(scope, element) {
          $(".modal-dialog").draggable();
        }
      }  
    });
    

提交回复
热议问题