From: Vincent Vanwaelscappel Date: Fri, 30 Oct 2020 17:36:44 +0000 (+0100) Subject: fix #4026 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=5258643ed57490e36ae94e815ba99e4c37656fac;p=fluidbook-html5.git fix #4026 @0.25 --- diff --git a/js/libs/aria/radio.js b/js/libs/aria/radio.js index e6726ca1..e3000c74 100644 --- a/js/libs/aria/radio.js +++ b/js/libs/aria/radio.js @@ -11,6 +11,9 @@ var $this = this; $(this.element).on('click', this.optionSelector, function () { + if ($(this).hashClass('disabled')) { + return true; + } var r = $(this).find('input[type=radio]'); r.prop('checked', true); $this.update();