I am experiencing an issue with a basic ng-click function in an NgDialog that is not triggering when clicked. I am seeking suggestions and ideas on what could be causing this problem.
this.clickLocation = function () {
ngDialog.open({
plain: true,
controller: ['$scope', function ($scope) {
console.log('hit');
}],
template: '<div class="ngdialog-content">' +
'<a ng-click="closeThisDialog()" class="button">Remove</a>' +
'</div>'
});
}