makeusabrew/bootbox (https://github.com/makeusabrew/bootbox) to AngularJS
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.2.0/bootbox.js"></script>
<script src="scripts/angular-bootbox.js"></script>
var app = angular.module('YourApp', ['angular-bootbox']);
app.config(function ($bootboxProvider) {
$bootboxProvider.setDefaults({ locale: "es" });
});
app.controller('eventsController', ['$scope', 'bootbox', function ($scope, bootbox) {
bootbox.confirm("Are you sure?", function (result) {
return true;
});
}]);