Browse Source

Merge branch 'master' into gh-pages

v1
David DeSandro 13 years ago
parent
commit
89a00a808d
  1. 9
      jquery.isotope.js
  2. 4
      jquery.isotope.min.js

9
jquery.isotope.js

@ -1,5 +1,5 @@
/** /**
* Isotope v1.5.08 * Isotope v1.5.09
* An exquisite jQuery plugin for magical layouts * An exquisite jQuery plugin for magical layouts
* http://isotope.metafizzy.co * http://isotope.metafizzy.co
* *
@ -388,9 +388,10 @@
this.reloadItems(); this.reloadItems();
// get top left position of where the bricks should be // get top left position of where the bricks should be
var $cursor = $( document.createElement('div') ).prependTo( this.element ); this.offset = {
this.offset = $cursor.position(); left: parseInt( this.element.css('padding-left'), 10 ),
$cursor.remove(); top: parseInt( this.element.css('padding-top'), 10 )
};
// add isotope class first time around // add isotope class first time around
var instance = this; var instance = this;

4
jquery.isotope.min.js vendored

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