Skip to content

Instantly share code, notes, and snippets.

@mattanja
Created October 29, 2014 09:24
Show Gist options
  • Save mattanja/4097249562274db91fc8 to your computer and use it in GitHub Desktop.
Save mattanja/4097249562274db91fc8 to your computer and use it in GitHub Desktop.
Usage of angular-dialog-service
xxx.controller('MyController', ['$scope', 'dialogs', function($scope, dialogs) {
$scope.remove = function() {
dialogs.confirm('Please confirm', 'Are you sure you want to remove this item?')
.result.then(function(btn) {
// Confirmed action
}, function(btn) {
// Cancel action
});
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment