Guest User

Untitled

a guest
Nov 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. var urlEvent = $A.get("e.force:navigateToURL");
  2. urlEvent.setParams({
  3. "url": url
  4. });
  5.  
  6. }
  7. workspaceAPI.openSubtab({
  8. parentTabId: primaryTabId,
  9. url: urlTmp,
  10. focus: true
  11. }).then(function(response) {
  12. workspaceAPI.focusTab({
  13. tabId: response
  14. });
  15. if(isVforce){urlEvent.fire();}
  16. }).catch(function(error) {
  17. console.log(error);
  18. alert(error);
  19. });
Add Comment
Please, Sign In to add comment