popover_confirm.html 478 B

123456789101112
  1. <div class="popover" tabindex="-1">
  2. <div class="arrow"></div>
  3. <h3 class="popover-title" ng-bind-html="title"></h3>
  4. <div class="popover-content">
  5. <p ng-bind-html="content" style="min-width:300px;"></p>
  6. <div class="form-actions">
  7. <button type="button" class="btn btn-danger" ng-click="$hide()">取消</button>
  8. <button type="button" class="btn btn-primary" ng-click=";$hide()">确定</button>
  9. </div>
  10. </div>
  11. </div>