From 63e62a6f89306e095a05722f1f08f02ff25c7a15 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 11 Apr 2016 11:44:30 +0200 Subject: [PATCH] whitespace cleanup --- www/manager6/Parser.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/manager6/Parser.js b/www/manager6/Parser.js index f92449a4..d67fbfa0 100644 --- a/www/manager6/Parser.js +++ b/www/manager6/Parser.js @@ -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 {