updated docs and dist

This commit is contained in:
vieron
2012-07-19 16:10:38 +02:00
parent 97074001bb
commit e610465a27
5 changed files with 134 additions and 136 deletions

View File

@ -224,7 +224,6 @@
this.set_dom_grid_height();
this.$wrapper.addClass('ready');
this.draggable();
this.next_position(2, 2);
$(window).bind(
'resize', throttle($.proxy(this.recalculate_faux_grid, this), 200));
@ -296,8 +295,8 @@
}
if (valid_pos.length) {
this.next_position = this.sort_by_row_asc(valid_pos)[0];
return this.next_position;
var next_position = this.sort_by_row_asc(valid_pos)[0];
return next_position;
}
return false;
};