Questions tagged [ng-boot-box]

AngularJS wrapper for Bootbox.js

AngularJS wrapper for Bootbox.js. Bootbox.js allowes you to easily make use of Twitter Bootstrap modals for javascript alerts, confirms and prompts. ngBootbox includes three directives, one for each of alert, confirm and prompt.

Resources

1 questions
7
votes
2 answers

Angular $scope won't update in bootbox callback

This is my first question on SO. When I splice an element of an array on the scope, that change is not reflected, when done in a callback of bootbox.js. Works: $scope.deleteA = function() { if (confirm("Really delete Item 3?")) { …