diff options
author | Jonas Oberg <jonas@morus.se> | 2012-12-17 13:16:50 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2014-03-11 16:36:23 +0000 |
commit | 3f8c6bd7b82e12e0ac31eaa3975e1142f6173f05 (patch) | |
tree | 4c91a2e1c1316d6506d5eaccdc2064dc9746fb43 /templates | |
parent | 151136832ba260f52a41d6170458ce7b631edd53 (diff) |
Added link to service for comments
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/fixamingata/footer.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/web/fixamingata/footer.html b/templates/web/fixamingata/footer.html index 325aa8b44..5d462eddc 100644 --- a/templates/web/fixamingata/footer.html +++ b/templates/web/fixamingata/footer.html @@ -41,6 +41,7 @@ %]>[% loc("Local alerts") %]</[% c.req.uri.path == '/alert' ? 'span' : 'a' %]></li>[% %]<li><[% IF c.req.uri.path == '/faq' %]span[% ELSE %]a href="/faq"[% END %]>[% loc("Help") %]</[% c.req.uri.path == '/faq' ? 'span' : 'a' %]></li> + <li><a href="javascript:UserVoice.showPopupWidget();">Lämna förslag</a></li> </ul> </div> </div> @@ -48,5 +49,13 @@ <!-- [% INCLUDE 'debug_footer.html' %] --> </div> <!-- .wrapper --> +<script type="text/javascript"> + var uvOptions = {}; + (function() { + var uv = document.createElement('script'); uv.type = 'text/javascript'; uv.async = true; + uv.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'widget.uservoice.com/vflswzMnwvfytYBz1rNw.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(uv, s); + })(); +</script> </body> </html> |