Skip to content

Instantly share code, notes, and snippets.

@stomita
Last active January 1, 2016 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stomita/8121157 to your computer and use it in GitHub Desktop.
Save stomita/8121157 to your computer and use it in GitHub Desktop.
Get prefix from parent window record id.
function getPrefix() {
try {
return window.parent.recordId ? window.parent.recordId + '/' : '';
} catch(e) {
return ''; // when access is not allowed to parent window object (maybe in different origin)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment