Mercurial > public > sg101
view gpp/forums/static/js/forums_mod.js @ 470:d9b6c4ec1977
For #227; rework last commit slightly (r508). Adapt the desired forums signal signature to the queued_search API instead of the other way around.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 17 Aug 2011 01:29:27 +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; } }); });