From 256a449213bb4738c87d9b524257137b5c641c0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=CC=88rn=20Zaefferer?= Date: Wed, 30 Sep 2015 15:42:33 +0200 Subject: [PATCH] Controlgroup: Improve comments and remove a misleading blank line --- ui/widgets/controlgroup.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/widgets/controlgroup.js b/ui/widgets/controlgroup.js index 5974d51c9..c07202795 100644 --- a/ui/widgets/controlgroup.js +++ b/ui/widgets/controlgroup.js @@ -80,15 +80,14 @@ return $.widget( "ui.controlgroup", { // Make sure the widget actually exists and has a selector set if ( $.fn[ widget ] && selector ) { - // Find instances of this widget inside controlgroup init them + // Find instances of this widget inside controlgroup and init them widgets = that.element.find( selector )[ widget ]( options ); widgets.each( function() { var element = $( this ); - // Store an instance of the controlgroup to be able to refrence + // Store an instance of the controlgroup to be able to reference it later var widgetElement = element[ widget ]( "widget" ); - widgetElement.data( "ui-controlgroup-data", element.data( "ui-" + widget.charAt( 0 ).toUpperCase() + widget.slice( 1 ) ) -- 2.39.5