annotate media/js/forums_mod.js @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +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 });