We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9328f commit f34e93bCopy full SHA for f34e93b
Gruntfile.js
100755
100644
dist/gridstack.js
package.json
src/gridstack.js
@@ -1009,7 +1009,9 @@
1009
this.opts.vertical_margin_unit = heightData.unit;
1010
this.opts.vertical_margin = heightData.height;
1011
1012
- !noUpdate && this._update_styles();
+ if (!noUpdate) {
1013
+ this._update_styles();
1014
+ }
1015
};
1016
1017
GridStack.prototype.cell_height = function (val, noUpdate) {
@@ -1030,7 +1032,9 @@
1030
1032
this.opts.cell_height_unit = heightData.unit;
1031
1033
this.opts.cell_height = heightData.height;
1034
1035
1036
1037
1038
1039
1040
GridStack.prototype.cell_width = function() {
0 commit comments