]> git.proxmox.com Git - pve-manager.git/commitdiff
whitespace cleanup
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 11 Apr 2016 09:44:30 +0000 (11:44 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 11 Apr 2016 09:56:40 +0000 (11:56 +0200)
www/manager6/Parser.js

index f92449a47744d32dc424ad624c5a9dc5f0e76ece..d67fbfa0f01366456e11e58e39ae715f897837fb 100644 (file)
@@ -40,13 +40,13 @@ Ext.define('PVE.Parser', { statics: {
            } else if ((match_res = p.match(/^rate=(\d+(\.\d+)?)$/)) !== null) {
                res.rate = match_res[1];
            } else if ((match_res = p.match(/^tag=(\d+(\.\d+)?)$/)) !== null) {
-                res.tag = match_res[1];
+               res.tag = match_res[1];
            } else if ((match_res = p.match(/^firewall=(\d+)$/)) !== null) {
-                res.firewall = match_res[1];
+               res.firewall = match_res[1];
            } else if ((match_res = p.match(/^link_down=(\d+)$/)) !== null) {
-                res.disconnect = match_res[1];
+               res.disconnect = match_res[1];
            } else if ((match_res = p.match(/^queues=(\d+)$/)) !== null) {
-                res.queues = match_res[1];
+               res.queues = match_res[1];
            } else if ((match_res = p.match(/^trunks=(\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*)$/)) !== null) {
                res.trunks = match_res[1];
            } else {