Skip to content

Instantly share code, notes, and snippets.

@msrivastav13
Created July 12, 2015 04:54
Show Gist options
  • Save msrivastav13/94ca3c584529b32ef1cc to your computer and use it in GitHub Desktop.
Save msrivastav13/94ca3c584529b32ef1cc to your computer and use it in GitHub Desktop.
displayToast : function (component, event, helper) {
var toast = $A.get("e.force:showToast");
if (toast){
//fire the toast event in Salesforce1
toast.setParams({
"title": "Success!",
"message": "The component loaded successfully."
});
toast.fire();
} else {
//your toast implementation for a standalone app here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment