Confirmation dialog on ng-click - AngularJS

后端 未结 17 1506
一向
一向 2020-11-30 00:03

I am trying to setup a confirmation dialog on an ng-click using a custom angularjs directive:

app.directive(\'ngConfirmClick\', [
    function()         


        
17条回答
  •  死守一世寂寞
    2020-11-30 00:47

    Confirmation dialog can implemented using AngularJS Material:

    $mdDialog opens a dialog over the app to inform users about critical information or require them to make decisions. There are two approaches for setup: a simple promise API and regular object syntax.

    Implementation example: Angular Material - Dialogs

提交回复
热议问题