diff options
Diffstat (limited to 'src/data.js')
-rw-r--r-- | src/data.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/data.js b/src/data.js index 0407f73ff..f7f65efeb 100644 --- a/src/data.js +++ b/src/data.js @@ -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 ); |