From 713688dccdfc7eddd596cdd1a3522e2ce9fb9d2a Mon Sep 17 00:00:00 2001 From: Giovanni Giacobbi Date: Mon, 22 Dec 2014 00:35:24 +0100 Subject: [PATCH] Widget: Improve readability in `$.widget.bridge()` Closes gh-1409 --- ui/widget.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ui/widget.js b/ui/widget.js index 30270504437..0b93625323b 100644 --- a/ui/widget.js +++ b/ui/widget.js @@ -195,11 +195,6 @@ $.widget.bridge = function( name, object ) { args = widget_slice.call( arguments, 1 ), returnValue = this; - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.widget.extend.apply( null, [ options ].concat(args) ) : - options; - if ( isMethodCall ) { this.each(function() { var methodValue, @@ -224,6 +219,12 @@ $.widget.bridge = function( name, object ) { } }); } else { + + // Allow multiple hashes to be passed on init + if ( args.length ) { + options = $.widget.extend.apply( null, [ options ].concat(args) ); + } + this.each(function() { var instance = $.data( this, fullName ); if ( instance ) {