// Fix options with bad multishop visibility

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8091 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-08-17 13:12:10 +00:00
parent 7481712923
commit 549d5be0c7
3 changed files with 17 additions and 3 deletions
+6
View File
@@ -829,6 +829,12 @@ function trackClickOnHelp(label, doc_version)
$(document).ready(function()
{
$('.isInvisible input, .isInvisible select, .isInvisible textarea').each(function(k, v)
{
$(v).attr('disabled', true);
});
// Disable options fields for each row with a multishop default checkbox
$('.preference_default_multishop input[type=checkbox]').each(function(k, v)
{
var key = $(v).attr('name');