increased readability

This commit is contained in:
Jerome Louis 2016-02-15 11:32:39 +01:00
parent ef9328fdab
commit f34e93baac
4 changed files with 6 additions and 2 deletions

0
Gruntfile.js Executable file → Normal file
View file

0
dist/gridstack.js vendored Executable file → Normal file
View file

0
package.json Executable file → Normal file
View file

View file

@ -1009,7 +1009,9 @@
this.opts.vertical_margin_unit = heightData.unit;
this.opts.vertical_margin = heightData.height;
!noUpdate && this._update_styles();
if (!noUpdate) {
this._update_styles();
}
};
GridStack.prototype.cell_height = function (val, noUpdate) {
@ -1030,7 +1032,9 @@
this.opts.cell_height_unit = heightData.unit;
this.opts.cell_height = heightData.height;
!noUpdate && this._update_styles();
if (!noUpdate) {
this._update_styles();
}
};
GridStack.prototype.cell_width = function() {