hotkey.html 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="assets/jquery/jquery-1.10.2.min.js"></script>
  5. <link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  6. <script src="assets/bootstrap/js/bootstrap.min.js"></script>
  7. <script src="assets/prettify/run_prettify.js"></script>
  8. <link href="assets/bootstrap-dialog/css/bootstrap-dialog.css" rel="stylesheet" type="text/css" />
  9. <script src="../js/bootstrap-dialog.js"></script>
  10. <meta charset="utf-8" />
  11. <title>BootstrapDialog examples</title>
  12. </head>
  13. <body style="padding-bottom: 100px;">
  14. <script>
  15. BootstrapDialog.show({
  16. buttons: [{
  17. label: 'Cancel',
  18. action: function(dialog){
  19. alert('Canceling...');
  20. }
  21. }, {
  22. label: 'Confirm',
  23. cssClass: 'btn-primary',
  24. action: function(dialog){
  25. alert('Confirming...');
  26. }
  27. }]
  28. });
  29. </script>
  30. </body>
  31. </html>