Skip to content

Instantly share code, notes, and snippets.

@emregulcan
Last active July 18, 2020 21:05
Show Gist options
  • Save emregulcan/8e73e31b5ca7b647f18e18334ebf1727 to your computer and use it in GitHub Desktop.
Save emregulcan/8e73e31b5ca7b647f18e18334ebf1727 to your computer and use it in GitHub Desktop.
Detect Dynamics 365 CE dashboard page (Alternate 01)
function isDashboardPage() {
let url = window.location;
if (url.search.indexOf("pagetype=dashboard") === -1 && window.parent != undefined && window.parent != null) {
url = window.parent.location;
}
return (url.search.indexOf("pagetype=dashboard") > -1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment