I am trying to setup a confirmation dialog on an ng-click using a custom angularjs directive:
app.directive(\'ngConfirmClick\', [
function()
$scope.MyUpdateFunction = function () {
var retVal = confirm("Do you want to save changes?");
if (retVal == true) {
$http.put('url', myData).
success(function (data, status, headers, config) {
alert('Saved');
}).error(function (data, status, headers, config) {
alert('Error while updating');
});
return true;
} else {
return false;
}
}
Code says everything