fix closure comiler warnings
This commit is contained in:
parent
6ffdf307f8
commit
2349443938
3 changed files with 7 additions and 7 deletions
6
dist/gridstack.js
vendored
6
dist/gridstack.js
vendored
|
|
@ -62,16 +62,16 @@
|
|||
|
||||
var id_seq = 0;
|
||||
|
||||
var GridStackEngine = function(width, onchange, float, height, items) {
|
||||
var GridStackEngine = function(width, onchange, float_mode, height, items) {
|
||||
this.width = width;
|
||||
this.float = float || false;
|
||||
this['float'] = float_mode || false;
|
||||
this.height = height || 0;
|
||||
|
||||
this.nodes = items || [];
|
||||
this.onchange = onchange || function() {};
|
||||
|
||||
this._update_counter = 0;
|
||||
this._float = this.float;
|
||||
this._float = this['float'];
|
||||
};
|
||||
|
||||
GridStackEngine.prototype.batch_update = function() {
|
||||
|
|
|
|||
2
dist/gridstack.min.map
vendored
2
dist/gridstack.min.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -62,16 +62,16 @@
|
|||
|
||||
var id_seq = 0;
|
||||
|
||||
var GridStackEngine = function(width, onchange, float, height, items) {
|
||||
var GridStackEngine = function(width, onchange, float_mode, height, items) {
|
||||
this.width = width;
|
||||
this.float = float || false;
|
||||
this['float'] = float_mode || false;
|
||||
this.height = height || 0;
|
||||
|
||||
this.nodes = items || [];
|
||||
this.onchange = onchange || function() {};
|
||||
|
||||
this._update_counter = 0;
|
||||
this._float = this.float;
|
||||
this._float = this['float'];
|
||||
};
|
||||
|
||||
GridStackEngine.prototype.batch_update = function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue