Mercurial > public > sg101
annotate gpp/forums/static/js/forums_mod.js @ 549:c4696a0cbd3f
Altered the open graph meta tags tag to generate tags for the home page
when None is supplied as a parameter. Updated the home page template to use it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 15 Jan 2012 13:27:37 -0600 |
parents | 88b2b9cb8c1f |
children |
rev | line source |
---|---|
bgneal@312 | 1 $(document).ready(function() { |
bgneal@312 | 2 var master = $('#forums-master-topic'); |
bgneal@312 | 3 var topics = $('.forums-topic_check'); |
bgneal@312 | 4 master.click(function() { |
bgneal@312 | 5 var state = this.checked; |
bgneal@312 | 6 topics.each(function() { |
bgneal@312 | 7 this.checked = state; |
bgneal@312 | 8 }); |
bgneal@312 | 9 }); |
bgneal@312 | 10 topics.click(function() { |
bgneal@312 | 11 if (master[0].checked && !this.checked) { |
bgneal@312 | 12 master[0].checked = false; |
bgneal@312 | 13 } |
bgneal@312 | 14 }); |
bgneal@312 | 15 }); |