(msg, title, fn)
| 940 | } |
| 941 | |
| 942 | function confirm(msg, title, fn) { |
| 943 | title = title || "" |
| 944 | $.confirm({ |
| 945 | theme: "modern", |
| 946 | title: title, |
| 947 | useBootstrap: false, |
| 948 | animateFromElement: false, |
| 949 | content: msg, |
| 950 | buttons: { |
| 951 | yes: fn, |
| 952 | cancel: () => { }, |
| 953 | }, |
| 954 | }) |
| 955 | } |
| 956 | |
| 957 | |
| 958 | /* STORAGE MANAGEMENT */ |
no outgoing calls
no test coverage detected