(msg, title)
| 929 | } |
| 930 | |
| 931 | function alert(msg, title) { |
| 932 | title = title || "" |
| 933 | $.alert({ |
| 934 | theme: "modern", |
| 935 | title: title, |
| 936 | useBootstrap: false, |
| 937 | animateFromElement: false, |
| 938 | content: msg, |
| 939 | }) |
| 940 | } |
| 941 | |
| 942 | function confirm(msg, title, fn) { |
| 943 | title = title || "" |
no outgoing calls
no test coverage detected