From: Mike Taylor Date: Tue, 12 May 2015 09:21:47 +0000 (+0100) Subject: Insert missing semicolons after function assignments. X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=d736fdeeff81314bf6995a2cd40cd033a7166aae;p=mkws-moved-to-github.git Insert missing semicolons after function assignments. --- 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; }