Every line of 'alert script' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
49 alert (msg, exception = null) { this.log('alert', msg, exception) }
29 export function alert(...object) { 30 if (object.length === 1) { 31 console.log('Object:', object[0]); 32 window.alert(JSON.stringify(object[0], circularReferencesReplacer(), 4)); 33 } else { 34 console.log('Object:', object); 35 window.alert(JSON.stringify(object, circularReferencesReplacer(), 4)); 36 } 37 }
50 function doAlert() 51 { 52 var message = "This is an Alert dialog"; 53 var title = "Attention!"; 54 55 navigator.notification.alert(message, 56 function() 57 { 58 console.log("Alert dismissed."); 59 }, 60 title); 61 62 console.log("After alert"); 63 };
24 function alert(message, cb) { 25 console.log("alert()", message); 26 sns.publish({ 27 Message: message, 28 Subject: "aws-tag-watch", 29 TopicArn: config.alertTopicArn 30 }, cb); 31 }
34 function doAlert(text) { 35 alert(text); // equals: $.alert(text); 36 console.log('Not Blocked.'); 37 }
81 function alert(arg) { 82 return new Promise(function (resolve, reject) { 83 try { 84 var options = !dialogsCommon.isDialogOptions(arg) ? { title: dialogsCommon.ALERT, okButtonText: dialogsCommon.OK, message: arg + "" } : arg; 85 var alert_1 = createAlertDialog(options); 86 alert_1.setPositiveButton(options.okButtonText, new android.content.DialogInterface.OnClickListener({ 87 onClick: function (dialog, id) { 88 dialog.cancel(); 89 resolve(); 90 } 91 })); 92 alert_1.setOnDismissListener(new android.content.DialogInterface.OnDismissListener({ 93 onDismiss: function () { 94 resolve(); 95 } 96 })); 97 showDialog(alert_1); 98 } 99 catch (ex) { 100 reject(ex); 101 } 102 }); 103 }
308 export function alert(arg: any): Promise { 309 return new Promise((resolve, reject) => { 310 try { 311 const options = !isDialogOptions(arg) ? { title: ALERT, okButtonText: OK, message: arg + '' } : arg; 312 const alertController = createAlertController(options, resolve); 313 314 addButtonsToAlertController(alertController, options, result => { 315 (alertController as any)._resolveFunction = null; 316 resolve(result); 317 }); 318 319 showUIAlertController(alertController); 320 } catch (ex) { 321 reject(ex); 322 } 323 }); 324 }