fix(ssr): fix window references

This commit is contained in:
Adam Bradley
2019-02-23 16:54:09 -06:00
parent e3e8c85087
commit 5b1bdc37e0
7 changed files with 13 additions and 7 deletions
+3 -1
View File
@@ -391,7 +391,9 @@ export class PushObject {
if (
checkAvailability('PushNotification', 'init', 'PushNotification') === true
) {
this._objectInstance = window.PushNotification.init(options);
if (typeof window !== 'undefined') {
this._objectInstance = window.PushNotification.init(options);
}
}
}