web-manager 3.0.6 → 3.0.7
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 +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1633,7 +1633,7 @@ function Manager() {
|
|
|
1633
1633
|
var returnUrlObject = new URL(decodeURIComponent(url));
|
|
1634
1634
|
var currentUrlObject = new URL(window.location.href);
|
|
1635
1635
|
return returnUrlObject.host === currentUrlObject.host
|
|
1636
|
-
|| returnUrlObject.protocol ===
|
|
1636
|
+
|| returnUrlObject.protocol === this.properties.global.app + ':'
|
|
1637
1637
|
}
|
|
1638
1638
|
|
|
1639
1639
|
// Manager.prototype.performance = function() {
|
package/package.json
CHANGED