@urga-panel/ur-panels-core 1.0.30 → 1.0.31
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.
|
@@ -30,7 +30,7 @@ export class WVFrontService extends Service {
|
|
|
30
30
|
this.oWebViewInterface.emit("sendFile", { base64, fileName, mimeType, action: mode });
|
|
31
31
|
}
|
|
32
32
|
gotoBack() {
|
|
33
|
-
this.oWebViewInterface.emit("gotoBack", "");
|
|
33
|
+
this.oWebViewInterface.emit("gotoBack", "back");
|
|
34
34
|
}
|
|
35
35
|
async sendFetchRequest(url, options) {
|
|
36
36
|
this.log.debug("sendFetchRequest", url, options);
|
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ export class WVFrontService extends Service {
|
|
|
43
43
|
this.oWebViewInterface.emit("sendFile", { base64, fileName, mimeType, action: mode });
|
|
44
44
|
}
|
|
45
45
|
public gotoBack() {
|
|
46
|
-
this.oWebViewInterface.emit("gotoBack", "");
|
|
46
|
+
this.oWebViewInterface.emit("gotoBack", "back");
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
public async sendFetchRequest(url: string, options?: RequestInit): Promise<any> {
|