I'm looking for a way to enable users to drag and drop elements from the modal onto the background.
Although my current modal is functioning well, it does not allow me to interact with elements on the background:
var asideInstance = $aside.open({
templateUrl: '/static/calendr/html/aside.html',
backdrop: false,
controller: function($scope, $modalInstance, events) {
$scope.events = events;
$scope.ok = function(e) {
$modalInstance.close();
e.stopPropagation();
};
$scope.cancel = function(e) {
$modalInstance.dismiss();
e.stopPropagation();
};
},
placement: 'right',
size: 'lg',
resolve:{
events: function() {
return $scope.events;
},
}
});