Changeset 61005 in spip-zone
- Timestamp:
- May 5, 2012, 4:08:11 PM (9 years ago)
- Location:
- _core_/plugins/forum
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_core_/plugins/forum/formulaires/configurer_forums_participants.html
r48507 r61005 61 61 jQuery(document).ready(function(){ 62 62 jQuery('li.configurer_forums_publics input').each(function(){ 63 var checked = jQuery(this). attr('checked');63 var checked = jQuery(this).prop('checked'); 64 64 jQuery(this).bind('change',function(){ 65 if (jQuery(this). attr('checked')==checked)65 if (jQuery(this).prop('checked')==checked) 66 66 jQuery('#config-options-').hide(); 67 67 else -
_core_/plugins/forum/prive/javascript/actiongroup.js
r60473 r61005 139 139 var check = $('input.actiongroup',this); 140 140 check 141 . attr('checked',!check.attr('checked'))141 .prop('checked',!check.prop('checked')) 142 142 .trigger('change'); 143 143 }) … … 149 149 .filter('input.actiongroup') 150 150 .change(function(){ 151 actiongroup.updateChecklist($(this).attr('value'),$(this). attr('checked'));151 actiongroup.updateChecklist($(this).attr('value'),$(this).prop('checked')); 152 152 }); 153 153
Note: See TracChangeset
for help on using the changeset viewer.