web-manager 3.1.12 → 3.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +13 -23
- package/package.json +1 -1
package/index.js
CHANGED
@@ -164,14 +164,12 @@ function Manager() {
|
|
164
164
|
}
|
165
165
|
|
166
166
|
Manager.prototype.setEventListeners = function() {
|
167
|
-
|
167
|
+
var This = this;
|
168
|
+
|
168
169
|
if (!utilities.get(this, 'properties.page.status.eventHandlersSet', false)) {
|
169
170
|
this.properties.page.status.eventHandlersSet = true;
|
170
|
-
|
171
|
-
// document.addEventListener('click', function (event) {
|
171
|
+
|
172
172
|
document.addEventListener('click', function (event) {
|
173
|
-
// console.log('Clicked.... NEW');
|
174
|
-
// This.log('Clicked', event.target);
|
175
173
|
// auth events
|
176
174
|
if (event.target.matches('.auth-signin-email-btn')) {
|
177
175
|
This.auth().signIn('email');
|
@@ -187,16 +185,18 @@ function Manager() {
|
|
187
185
|
This.auth().forgot();
|
188
186
|
} else if (event.target.matches('#prechat-btn')) {
|
189
187
|
load_tawk(This, This.properties.options);
|
190
|
-
}
|
191
|
-
|
192
|
-
// push notification events
|
193
|
-
if (event.target.matches('.auth-subscribe-notifications-btn')) {
|
194
|
-
//@@@NOTIFICATIONS
|
188
|
+
} else if (event.target.matches('.auth-subscribe-notifications-btn')) {
|
195
189
|
This.notifications().subscribe()
|
196
|
-
.catch(function (e) {
|
197
|
-
console.error(e);
|
198
|
-
});
|
199
190
|
}
|
191
|
+
|
192
|
+
// Autorequest
|
193
|
+
if (!This._notificationRequested && This.properties.options.pushNotifications.autoRequest) {
|
194
|
+
This._notificationRequested = true;
|
195
|
+
|
196
|
+
setTimeout(function () {
|
197
|
+
This.notifications().subscribe()
|
198
|
+
}, This.properties.options.pushNotifications.autoRequest * 1000);
|
199
|
+
}
|
200
200
|
|
201
201
|
}, false);
|
202
202
|
}
|
@@ -1221,16 +1221,6 @@ function Manager() {
|
|
1221
1221
|
//@@@NOTIFICATIONS
|
1222
1222
|
// _setupTokenRefreshHandler(This);
|
1223
1223
|
|
1224
|
-
if (options_user.pushNotifications.autoRequest) {
|
1225
|
-
setTimeout(function () {
|
1226
|
-
//@@@NOTIFICATIONS
|
1227
|
-
This.notifications().subscribe()
|
1228
|
-
.catch(function (e) {
|
1229
|
-
console.error(e);
|
1230
|
-
});
|
1231
|
-
}, options_user.pushNotifications.autoRequest * 1000);
|
1232
|
-
}
|
1233
|
-
|
1234
1224
|
try {
|
1235
1225
|
// Normally, notifications are not displayed when user is ON PAGE but we will display it here anyway
|
1236
1226
|
firebase.messaging().onMessage(function (payload) {
|
package/package.json
CHANGED