diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-06-15 09:30:16 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2016-06-15 09:30:16 +0100 |
commit | 2676b87d01f3fad8209db7022b2ea25e4b5ccd0b (patch) | |
tree | d1d6747d0a7aca909ed9980b7cf3b438515a530e | |
parent | f14da324e6cebfdd96a70ee9ce037afc3d447c80 (diff) |
[fixmystreet.com] Fix broken goodies JavaScript.
-rw-r--r-- | templates/web/fixmystreet.com/about/posters.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/fixmystreet.com/about/posters.html b/templates/web/fixmystreet.com/about/posters.html index bcf235fa4..f330b57fe 100644 --- a/templates/web/fixmystreet.com/about/posters.html +++ b/templates/web/fixmystreet.com/about/posters.html @@ -13,7 +13,7 @@ <script> -$("[data-goodielink]").on(click, function(e){ +$("[data-goodielink]").on('click', function(e){ var url = $(this).attr('href') var name = $(this).attr('data-goodielink') var callback = function(){ |