| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html>
- <head>
- <script src="assets/jquery/jquery-1.10.2.min.js"></script>
- <link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
- <script src="assets/bootstrap/js/bootstrap.min.js"></script>
- <script src="assets/prettify/run_prettify.js"></script>
- <link href="assets/bootstrap-dialog/css/bootstrap-dialog.css" rel="stylesheet" type="text/css" />
- <script src="../js/bootstrap-dialog.js"></script>
- <meta charset="utf-8" />
- <title>BootstrapDialog examples</title>
- </head>
- <body style="padding-bottom: 100px;">
- <script>
- BootstrapDialog.show({
- buttons: [{
- label: 'Cancel',
- hotkey: 81,
- action: function(dialog){
- alert('Canceling...');
- }
- }, {
- label: 'Confirm',
- cssClass: 'btn-primary',
- hotkey: 13,
- action: function(dialog){
- alert('Confirming...');
- }
- }]
- });
- </script>
- </body>
- </html>
|