Mercurial > public > sg101
annotate media/js/forums_mod.js @ 235:d302c498560e
Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Aug 2010 04:01:58 +0000 |
parents | d1b0b86441c0 |
children |
rev | line source |
---|---|
bgneal@112 | 1 $(document).ready(function() { |
bgneal@112 | 2 var master = $('#forums-master-topic'); |
bgneal@112 | 3 var topics = $('.forums-topic_check'); |
bgneal@112 | 4 master.click(function() { |
bgneal@112 | 5 var state = this.checked; |
bgneal@112 | 6 topics.each(function() { |
bgneal@112 | 7 this.checked = state; |
bgneal@112 | 8 }); |
bgneal@112 | 9 }); |
bgneal@112 | 10 topics.click(function() { |
bgneal@112 | 11 if (master[0].checked && !this.checked) { |
bgneal@112 | 12 master[0].checked = false; |
bgneal@112 | 13 } |
bgneal@112 | 14 }); |
bgneal@112 | 15 }); |