From 2bf307313b9e40900193267bc2fb779b9ab24b5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=CC=88rn=20Zaefferer?= Date: Tue, 6 Oct 2015 15:42:24 +0200 Subject: [PATCH] Checkboxradio: Fix invalid chars, remove unused var, add comment --- ui/widgets/checkboxradio.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index 88b2f784d..6bdd858db 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -59,6 +59,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { labels = this.element.labels(); + // If there are multiple labels, use the last one this.label = $( labels[ labels.length - 1 ] ); if ( !this.label.length ) { $.error( "No label found for checkboxradio widget" ); @@ -152,11 +153,11 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { _getRadioGroup: function() { var name = this.element[ 0 ].name; var formParent = this.formParent[ 0 ]; - var radios = $( [] ); if ( !name ) { return $( [] ); - }`` + } + return this.formParent.find( "[name='" + $.ui.escapeSelector( name ) + "']" ).filter( function() { var form = $( this ).form(); return ( form.length ? form : $( "body" ) )[ 0 ] === formParent; -- 2.39.5