If I create an Angular directive:
App.directive('modalWindow', function(){
return {
restrict: 'EAC',
link: function(scope, element) {
elem.draggable();
}
}
});
and then reference it in markup:
<div class="modalWindow">
and then place a breakpoint on elem.draggable()
will the debugger stop at the breakpoint when the app is run?
EDIT: It is not stopping in Visual Studio, hence my question.