source: trunk/www.guidonia.net/wp/wp-content/plugins/sociable/sociable-admin.js@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 399 bytes
Line 
1jQuery(document).ready(function(){
2 jQuery("#sociable_site_list").sortable({});
3
4 jQuery("#sociable_site_list input:checkbox").change(function() {
5 if (jQuery(this).attr('checked')) {
6 jQuery(this).parent().removeClass("inactive");
7 jQuery(this).parent().addClass("active");
8 } else {
9 jQuery(this).parent().removeClass('active');
10 jQuery(this).parent().addClass('inactive');
11 }
12 } );
13});
Note: See TracBrowser for help on using the repository browser.