Browse Source

src : remove var optionName; minify;

pull/96/head
David DeSandro 14 years ago
parent
commit
7aa2ee60da
  1. 3
      jquery.isotope.js
  2. 2
      jquery.isotope.min.js

3
jquery.isotope.js

@ -443,8 +443,7 @@
// signature: $('#foo').bar({ cool:false }); // signature: $('#foo').bar({ cool:false });
if ( $.isPlainObject( key ) ){ if ( $.isPlainObject( key ) ){
this.options = $.extend(true, this.options, key); this.options = $.extend(true, this.options, key);
var optionName; for ( var optionName in key ) {
for ( optionName in key ) {
this._updateOption( optionName ); this._updateOption( optionName );
} }
} }

2
jquery.isotope.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save