From d736fdeeff81314bf6995a2cd40cd033a7166aae Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 12 May 2015 10:21:47 +0100 Subject: [PATCH] Insert missing semicolons after function assignments. --- src/mkws-filter.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 63d80bd..004fe83 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -89,7 +89,7 @@ function filterSet(team) { res += field + "=" + value.replace(/[\\|,]/g, '\\$&'); }); return res; - } + }; that.pp2catLimit = function() { var res = ""; @@ -99,7 +99,7 @@ function filterSet(team) { res += "category~" + id.replace(/[\\,]/g, '\\$&'); }); return res; - } + }; // Returns a hash of key=value pairs representing the filter-set // These will become part of the URL-fragment representing the state @@ -122,7 +122,7 @@ function filterSet(team) { } return hash; - } + }; return that; } -- 1.7.10.4