Mercurial > public > sg101
view gpp/forums/static/js/forums_mod.js @ 374:dd673fae508d
Fixing #156. Making it possible to goto the first unread post in a thread. Made the 'New' icon a link; when displayed on a topic, takes you to the first unread post.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 07 Mar 2011 01:22:49 +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; } }); });