Merge branch '1.8.x' into 1.9-int

This commit is contained in:
Sipke Schoorstra
2015-04-27 16:04:17 +02:00
4 changed files with 23 additions and 10 deletions

View File

@@ -178,9 +178,10 @@
$("[name=" + controller.attr("name") + "]").click(function () { $("[name=" + $(this).attr("name") + "]").each($(this).toggleWhatYouControl); });
}
else if (controller.is("option")) {
controller.parent().change(function () {
controller.parent().change(function() {
controller.toggleWhatYouControl();
}).each($(this).toggleWhatYouControl);
});
controller.each($(this).toggleWhatYouControl);
}
});
});