annotate forums/static/js/forums_mod.js @ 894:101728976f9c

Check html for <img src="http:...">. Older Smiley code generated absolute URLs for smiley images. Check for this and if found, save the model to force regeneration of HTML.
author Brian Neal <bgneal@gmail.com>
date Wed, 18 Feb 2015 21:20:31 -0600
parents ee87ea74d46b
children
rev   line source
bgneal@312 1 $(document).ready(function() {
bgneal@312 2 var master = $('#forums-master-topic');
bgneal@312 3 var topics = $('.forums-topic_check');
bgneal@312 4 master.click(function() {
bgneal@312 5 var state = this.checked;
bgneal@312 6 topics.each(function() {
bgneal@312 7 this.checked = state;
bgneal@312 8 });
bgneal@312 9 });
bgneal@312 10 topics.click(function() {
bgneal@312 11 if (master[0].checked && !this.checked) {
bgneal@312 12 master[0].checked = false;
bgneal@312 13 }
bgneal@312 14 });
bgneal@312 15 });