(title, subtitle, message)
| 51 | } |
| 52 | |
| 53 | function notify(title, subtitle, message) { |
| 54 | if (isLoon) $notification.post(title, subtitle, message); |
| 55 | if (isSurge) $notification.post(title, subtitle, message); |
| 56 | if (isQX) $notify(title, subtitle, message); |
| 57 | } |
| 58 | |
| 59 | function httpPost(url, headers, body) { |
| 60 | if (isLoon || isSurge) { |