trigger resizestart on items for when nested grids are resized

This commit is contained in:
Derek Moore 2016-01-28 15:21:18 -06:00
parent 61a129e77c
commit 1fe90ee79b

View file

@ -660,6 +660,10 @@
el.resizable('option', 'minWidth', cell_width * (node.min_width || 1));
el.resizable('option', 'minHeight', self.opts.cell_height * (node.min_height || 1));
if (event.type == 'resizestart') {
o.find('.grid-stack-item').trigger('resizestart');
}
};
var on_end_moving = function(event, ui) {