Changeset 26571 for trunk/src/wp-admin/options-general.php
- Timestamp:
- 12/03/2013 06:20:19 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/options-general.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r26518 r26571 33 33 }); 34 34 $("input[name='date_format_custom']").focus(function(){ 35 $( "#date_format_custom_radio").attr("checked", "checked");35 $( '#date_format_custom_radio' ).prop( 'checked', true ); 36 36 }); 37 37 … … 41 41 }); 42 42 $("input[name='time_format_custom']").focus(function(){ 43 $( "#time_format_custom_radio").attr("checked", "checked");43 $( '#time_format_custom_radio' ).prop( 'checked', true ); 44 44 }); 45 45 $("input[name='date_format_custom'], input[name='time_format_custom']").change( function() {
Note: See TracChangeset
for help on using the changeset viewer.