1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
| var UIBootbox = function () {
|
| return {
|
| //main function to initiate the module
| init: function () {
|
| $('#demo_1').click(function(){
| bootbox.alert("Hello world!");
| });
| //end #demo_1
|
| $('#demo_2').click(function(){
| bootbox.alert("Hello world!", function() {
| alert("Hello world callback");
| });
| });
| //end #demo_2
|
| $('#demo_3').click(function(){
| bootbox.confirm("Are you sure?", function(result) {
| alert("Confirm result: "+result);
| });
| });
| //end #demo_3
|
| $('#demo_4').click(function(){
| bootbox.prompt("What is your name?", function(result) {
| if (result === null) {
| alert("Prompt dismissed");
| } else {
| alert("Hi <b>"+result+"</b>");
| }
| });
| });
| //end #demo_6
|
| $('#demo_5').click(function(){
| bootbox.dialog({
| message: "I am a custom dialog",
| title: "Custom title",
| buttons: {
| success: {
| label: "Success!",
| className: "green",
| callback: function() {
| alert("great success");
| }
| },
| danger: {
| label: "Danger!",
| className: "red",
| callback: function() {
| alert("uh oh, look out!");
| }
| },
| main: {
| label: "Click ME!",
| className: "blue",
| callback: function() {
| alert("Primary button");
| }
| }
| }
| });
| });
| //end #demo_7
| }
| };
|
| }();
|
|