Make sure that when multiple variables are being declared that assignments are each done on their own line.
This commit is contained in:
parent
b5b3c73db3
commit
fb48ae8e6c
12 changed files with 98 additions and 45 deletions
|
@ -177,7 +177,8 @@ jQuery.fn.extend({
|
|||
|
||||
} else {
|
||||
return this.each(function() {
|
||||
var $this = jQuery( this ), args = [ parts[0], value ];
|
||||
var $this = jQuery( this ),
|
||||
args = [ parts[0], value ];
|
||||
|
||||
$this.triggerHandler( "setData" + parts[1] + "!", args );
|
||||
jQuery.data( this, key, value );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue