Mercurial > public > sg101
view media/js/forums_mod.js @ 162:6a5bdcf93ad3
Fix #48; shoutbox was no longer escaping user input on display.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 22 Dec 2009 03:55:37 +0000 |
parents | d1b0b86441c0 |
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; } }); });