Index: branches/1.0.x/inc/js/list_manager.js =================================================================== diff -u -N -r15169 -r15860 --- branches/1.0.x/inc/js/list_manager.js (.../list_manager.js) (revision 15169) +++ branches/1.0.x/inc/js/list_manager.js (.../list_manager.js) (revision 15860) @@ -155,10 +155,10 @@ if ( $checkbox.val() == '' ) { // "All" checkbox - $("input[type='checkbox']", $form).not($checkbox).attr('checked', false); + $("input[type='checkbox']", $form).not($checkbox).prop('checked', false); } else if ( $checkbox.is(':checked') ) { - $("input[type='checkbox'][value='']", $form).attr('checked', false); + $("input[type='checkbox'][value='']", $form).prop('checked', false); } update_checkbox_options($regexp, $hidden_id, $form); @@ -190,16 +190,16 @@ switch( $manager.filters[$field].type ) { case 'radio': - $("input[type='radio'][value='']", $form).attr('checked', true); + $("input[type='radio'][value='']", $form).prop('checked', true); break; case 'checkbox': var $checkbox = $("input[type='checkbox'][value='']", $form), $hidden_id = $checkbox.attr('id').replace(/_([\d\w-=]|)+$/, ''), $regexp = new RegExp(jq($hidden_id) + '_([\\d\\w-=]+)'); - $checkbox.attr('checked', true); - $("input[type='checkbox']", $form).not($checkbox).attr('checked', false); + $checkbox.prop('checked', true); + $("input[type='checkbox']", $form).not($checkbox).prop('checked', false); update_checkbox_options($regexp, $hidden_id, $form); break; @@ -255,17 +255,17 @@ switch( this.filters[$field].type ) { case 'radio': - $('#' + jq($param_name + '_' + $param_value) ).attr('checked', true); + $('#' + jq($param_name + '_' + $param_value) ).prop('checked', true); break; case 'checkbox': $values = $param_value.substring(1, $param_value.length - 1).split('|'); for (var $i = 0; $i < $values.length; $i++) { - $('#' + jq($param_name + '_' + $values[$i]) ).attr('checked', true); + $('#' + jq($param_name + '_' + $values[$i]) ).prop('checked', true); } - $('#' + jq($param_name + '_') ).attr('checked', false); + $('#' + jq($param_name + '_') ).prop('checked', false); $('#' + jq($param_name) ).val($param_value); break; Index: branches/1.0.x/elements/html_head.elm.tpl =================================================================== diff -u -N -r15801 -r15860 --- branches/1.0.x/elements/html_head.elm.tpl (.../html_head.elm.tpl) (revision 15801) +++ branches/1.0.x/elements/html_head.elm.tpl (.../html_head.elm.tpl) (revision 15860) @@ -41,7 +41,7 @@ - + Index: branches/1.0.x/inc/js/thickbox/thickbox.js =================================================================== diff -u -N -r15801 -r15860 --- branches/1.0.x/inc/js/thickbox/thickbox.js (.../thickbox.js) (revision 15801) +++ branches/1.0.x/inc/js/thickbox/thickbox.js (.../thickbox.js) (revision 15860) @@ -307,11 +307,11 @@ } else if (params.url.indexOf('TB_iframe') != -1) { TB.position(); - if ($.browser.safari) { + /*if ($.browser.safari) { // safari needs help because it will not fire iframe onload $('#TB_load').remove(); $('#TB_window').css('display', 'block'); - } + }*/ } else { var $content_url = params.url + '&random=' + (new Date().getTime()); @@ -419,11 +419,7 @@ TB.position = function () { $('#TB_window').css( {marginLeft: '-' + parseInt(TB.Width / 2) + 'px', width: TB.Width + 'px'} ); - - if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { - // take away IE6 - $('#TB_window').css( {marginTop: '-' + parseInt(TB.Height / 2) + 'px'} ); - } + $('#TB_window').css( {marginTop: '-' + parseInt(TB.Height / 2) + 'px'} ); } TB.parseQuery = function (query) { Index: branches/1.0.x/elements/side_boxes/compare.elm.tpl =================================================================== diff -u -N -r15054 -r15860 --- branches/1.0.x/elements/side_boxes/compare.elm.tpl (.../compare.elm.tpl) (revision 15054) +++ branches/1.0.x/elements/side_boxes/compare.elm.tpl (.../compare.elm.tpl) (revision 15860) @@ -56,12 +56,12 @@ create_tooltip($compare_checkbox, 'Removed from Comparison', 'formNeutral'); - $compare_checkbox.attr('checked', false); + $compare_checkbox.prop('checked', false); create_tooltip($compare_checkbox, 'Up to products can be compared', 'formError'); - $compare_checkbox.attr('checked', false); + $compare_checkbox.prop('checked', false); @@ -70,7 +70,7 @@ function () { var $me = $(this); create_tooltip($me, 'Removed from Comparison', 'formNeutral'); - $me.attr('checked', false); + $me.prop('checked', false); } );