Correctly sort nodes by using the total width instead of individual node width (becomes a problem with nodes of variable width).

This commit is contained in:
Matt Widmann 2015-04-14 16:19:03 -04:00
commit 5f2e795677

View file

@ -429,11 +429,12 @@
if (this.opts.auto) {
var elements = [];
var _this = this;
this.container.children('.' + this.opts.item_class).each(function (index, el) {
el = $(el);
elements.push({
el: el,
i: parseInt(el.attr('data-gs-x')) + parseInt(el.attr('data-gs-y')) * parseInt(el.attr('data-gs-width'))
i: parseInt(el.attr('data-gs-x')) + parseInt(el.attr('data-gs-y')) * _this.opts.width // Use opts.width as weight for Y
});
});
_.chain(elements).sortBy(function (x) { return x.i; }).each(function (i) {