web-manager 3.2.34 → 3.2.36
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 -2
- package/lib/account.js +0 -2
- package/package.json +1 -1
package/index.js
CHANGED
@@ -38,13 +38,24 @@ var store;
|
|
38
38
|
* MODULE
|
39
39
|
*/
|
40
40
|
function ieVersion() {
|
41
|
+
// https://makandracards.com/makandra/53475-minimal-javascript-function-to-detect-version-of-internet-explorer-or-edge
|
41
42
|
var match = /\b(MSIE |Trident.*?rv:|Edge\/)(\d+)/.exec(navigator.userAgent);
|
42
43
|
if (match) {return parseInt(match[2])};
|
43
44
|
}
|
44
45
|
|
46
|
+
function _isSupportedBrowser() {
|
47
|
+
var ieVersion = ieVersion();
|
48
|
+
|
49
|
+
// IE 10 and below
|
50
|
+
if (ieVersion && ieVersion <= 11) {
|
51
|
+
return false;
|
52
|
+
}
|
53
|
+
|
54
|
+
return true;
|
55
|
+
}
|
56
|
+
|
45
57
|
function Manager() {
|
46
58
|
var self = this;
|
47
|
-
var iev = ieVersion();
|
48
59
|
|
49
60
|
/**
|
50
61
|
* OPTIONS
|
@@ -66,7 +77,7 @@ function Manager() {
|
|
66
77
|
// initSecondaryReady: false,
|
67
78
|
queryString: {},
|
68
79
|
// libErrors: [],
|
69
|
-
isSupportedBrowser: (
|
80
|
+
isSupportedBrowser: _isSupportedBrowser(),
|
70
81
|
startTime: new Date(),
|
71
82
|
// auth: {
|
72
83
|
// status: undefined,
|
package/lib/account.js
CHANGED
@@ -494,9 +494,7 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
|
|
494
494
|
? '<i class="fas fa-exclamation-triangle mr-1"></i> Expires in ' + daysTillExpire + ' days '
|
495
495
|
: '');
|
496
496
|
|
497
|
-
|
498
497
|
// Update payment method UI
|
499
|
-
account.plan.status = 'suspended'
|
500
498
|
if (account.plan.status === 'suspended') {
|
501
499
|
self.dom.select('.master-alert-suspended').removeAttribute('hidden');
|
502
500
|
}
|
package/package.json
CHANGED