Mercurial > public > sg101
annotate gpp/templates/forums/jump_box.js @ 569:3fe2eced1be7
Now developing on Ubuntu 12.04 with Python 2.7.
Use symbolic links for media, so add media/banners to .hgignore.
I had a syntax error in banner_tags.py that only Python 2.7 caught.
For local development, read database name from SECRETS.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 29 Apr 2012 16:00:01 -0500 |
parents | 768e3568addf |
children |
rev | line source |
---|---|
bgneal@358 | 1 <script type="text/javascript"> |
bgneal@358 | 2 //<![CDATA[ |
bgneal@358 | 3 $(document).ready(function() { |
bgneal@358 | 4 var jumpSelect = $('#forum-jumpbox-select')[0]; |
bgneal@358 | 5 $('#forum-jumpbox-button').click(function() { |
bgneal@358 | 6 var dest = jumpSelect.options[jumpSelect.selectedIndex].value; |
bgneal@358 | 7 window.location = dest; |
bgneal@358 | 8 }); |
bgneal@358 | 9 }); |
bgneal@358 | 10 //]]> |
bgneal@358 | 11 </script> |