diff --git a/admin-dev/themes/default/template/controllers/products/list_header.tpl b/admin-dev/themes/default/template/controllers/products/list_header.tpl index 7e859966c..c25442474 100644 --- a/admin-dev/themes/default/template/controllers/products/list_header.tpl +++ b/admin-dev/themes/default/template/controllers/products/list_header.tpl @@ -40,7 +40,8 @@ }); // Make sure the checkbox is checked/unchecked when the link is clicked - $('#toggle_category_tree').bind('click', function(){ + $('#toggle_category_tree').bind('click', function(event){ + event.preventDefault(); $('#block_category_tree').toggle(); if ($('#block_category_tree').is(':visible')) $(this).find('input').attr('checked', 'checked');