syttunnel 0.1.5-6 → 0.1.5-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/core/basic/appNavigator.d.ts +2 -1
- package/package.json +1 -1
- package/syttunnel.js +3 -2
package/package.json
CHANGED
package/syttunnel.js
CHANGED
|
@@ -769,11 +769,12 @@ var AppNavigator = /** @class */ (function () {
|
|
|
769
769
|
}
|
|
770
770
|
/**
|
|
771
771
|
* 关闭当前h5应用
|
|
772
|
+
* 对应app9.38版本升级为携带参数
|
|
772
773
|
*/
|
|
773
|
-
AppNavigator.prototype.closeH5App = function () {
|
|
774
|
+
AppNavigator.prototype.closeH5App = function (params) {
|
|
774
775
|
var appFunc = {
|
|
775
776
|
method: "backToBefore",
|
|
776
|
-
params:
|
|
777
|
+
params: params,
|
|
777
778
|
};
|
|
778
779
|
bridge_1.default.postMessage(appFunc).then().catch();
|
|
779
780
|
};
|