From 5258643ed57490e36ae94e815ba99e4c37656fac Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 30 Oct 2020 18:36:44 +0100 Subject: [PATCH] fix #4026 @0.25 --- js/libs/aria/radio.js | 3 +++ 1 file changed, 3 insertions(+) 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(); -- 2.39.5