with a function call to the newly added textToFile() function in
the utils class (Proxmox.Utils).

Signed-off-by: Daniel Tschlatscher <d.tschlatsc...@proxmox.com>
---
 www/manager6/node/Subscription.js | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/www/manager6/node/Subscription.js 
b/www/manager6/node/Subscription.js
index 2558f523..d3502eca 100644
--- a/www/manager6/node/Subscription.js
+++ b/www/manager6/node/Subscription.js
@@ -61,19 +61,7 @@ Ext.define('PVE.node.Subscription', {
                        var fileContent = 
Ext.String.htmlDecode(reportWindow.getComponent('system-report-view').html);
                        var fileName = getReportFileName();
 
-                       // Internet Explorer
-                       if (window.navigator.msSaveOrOpenBlob) {
-                           navigator.msSaveOrOpenBlob(new Blob([fileContent]), 
fileName);
-                       } else {
-                           var element = document.createElement('a');
-                           element.setAttribute('href', 
'data:text/plain;charset=utf-8,' +
-                             encodeURIComponent(fileContent));
-                           element.setAttribute('download', fileName);
-                           element.style.display = 'none';
-                           document.body.appendChild(element);
-                           element.click();
-                           document.body.removeChild(element);
-                       }
+                       Proxmox.Utils.textToFile(fileName, fileContent);
                    },
                },
            ],
-- 
2.30.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to