Skip to content

Instantly share code, notes, and snippets.

@nhirata
Created April 1, 2015 02:13
Show Gist options
  • Save nhirata/be1d5e7d37060fc2387a to your computer and use it in GitHub Desktop.
Save nhirata/be1d5e7d37060fc2387a to your computer and use it in GitHub Desktop.
for (i = 0; i < 20; i++) {
function popupNotify(title,body){}
try{
var alertsService = Components.classes["@mozilla.org/alerts-service;1"]
.getService(Components.interfaces.nsIAlertsService);
alertsService.showAlertNotification( true,
"Test" + i,"this is a test" + i , false, "", null);
}
catch(e){ /*this does nothing right now*/ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment