|
@@ -397,3 +397,16 @@ async function convertToWebPAsync(base64Image) {
|
|
|
return webpData;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+function closeWindow(){
|
|
|
+ const userAgent = navigator.userAgent;
|
|
|
+ if (userAgent.indexOf("Firefox") != -1 || userAgent.indexOf("Chrome") !=-1) {
|
|
|
+ window.location.href="about:blank";
|
|
|
+ window.close();
|
|
|
+ } else {
|
|
|
+ window.opener = null;
|
|
|
+ window.open("", "_self");
|
|
|
+ window.close();
|
|
|
+ }
|
|
|
+}
|