Skip to content

Instantly share code, notes, and snippets.

@jasonaden
Last active March 2, 2016 22:57
Show Gist options
  • Save jasonaden/9d1eb0e59ead442b860f to your computer and use it in GitHub Desktop.
Save jasonaden/9d1eb0e59ead442b860f to your computer and use it in GitHub Desktop.
Links and Notes
function ($scope, $uibModalInstance) {
$scope.ok = function () {
$uibModalInstance.close("Ok");
};
$scope.cancel = function () {
$uibModalInstance.dismiss('cancel');
};
}
<div class="modal-header">
<h3 class="modal-title">Confirm?</h3>
</div>
<div class="modal-body">
Are you sure?
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="button" ng-click="ok()">OK</button>
<button class="btn btn-warning" type="button" ng-click="cancel()">Cancel</button>
</div>
https://plnkr.co/edit/qoMWosUVw5GplxhjFgou
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment