-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
Currently the loader checks for existing script on page with
// If already included in the page:
if (window.google!== undefined) {
return Promise.resolve(window.google.charts);
}
unfortunately this doesn't work if you have used other google scripts on the page that are using the google namespace...
this should be instead:
// If already included in the page:
if (window.google.charts !== undefined) {
return Promise.resolve(window.google.charts);
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels