Mercurial > public > sg101
view gpp/forums/static/js/forums_mod.js @ 401:463649d7698b
Fixing #197; add a badge for photo of the day; forgot to add the camera icon.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Mar 2011 21:30:36 +0000 |
parents | 88b2b9cb8c1f |
children |
line wrap: on
line source
$(document).ready(function() { var master = $('#forums-master-topic'); var topics = $('.forums-topic_check'); master.click(function() { var state = this.checked; topics.each(function() { this.checked = state; }); }); topics.click(function() { if (master[0].checked && !this.checked) { master[0].checked = false; } }); });