]> git.proxmox.com Git - pve-manager.git/blobdiff - www/manager6/VNCConsole.js
api: add proxmox-firewall to versions pkg list
[pve-manager.git] / www / manager6 / VNCConsole.js
index 204babcc09c1e7ec5782a7406e30447ce277a173..9057e447f0cee1b26b609ae84e41b41efc0d2355 100644 (file)
@@ -29,7 +29,7 @@ Ext.define('PVE.noVncConsole', {
 
        // always use same iframe, to avoid running several noVnc clients
        // at same time (to avoid performance problems)
-       var box = Ext.create('Ext.ux.IFrame', { itemid : "vncconsole" });
+       var box = Ext.create('Ext.ux.IFrame', { itemid: "vncconsole" });
 
        var type = me.xtermjs ? 'xtermjs' : 'novnc';
        Ext.apply(me, {
@@ -52,8 +52,8 @@ Ext.define('PVE.noVncConsole', {
                    PVE.Utils.cleanEmptyObjectKeys(queryDict);
                    var url = '/?' + Ext.Object.toQueryString(queryDict);
                    box.load(url);
-               }
-           }
+               },
+           },
        });
 
        me.callParent();
@@ -67,6 +67,6 @@ Ext.define('PVE.noVncConsole', {
        // reload IFrame content to forcibly reconnect VNC/xterm.js to VM
        var box = this.down('[itemid=vncconsole]');
        box.getWin().location.reload();
-    }
+    },
 });