Insert missing semicolons after function assignments.
authorMike Taylor <mike@indexdata.com>
Tue, 12 May 2015 09:21:47 +0000 (10:21 +0100)
committerMike Taylor <mike@indexdata.com>
Tue, 12 May 2015 09:21:47 +0000 (10:21 +0100)
src/mkws-filter.js

index 63d80bd..004fe83 100644 (file)
@@ -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;
 }