fix lint errors

This commit is contained in:
Pavel Reznikov 2016-08-17 23:36:05 -07:00
commit 78f00738ab
2 changed files with 4 additions and 4 deletions

4
dist/gridstack.js vendored
View file

@ -130,7 +130,7 @@
*/
function GridStackDragDropPlugin(grid) {
this.grid = grid;
};
}
GridStackDragDropPlugin.prototype.resizable = function(el, opts) {
return this;
@ -146,7 +146,7 @@
*/
function JQueryUIGridStackDragDropPlugin(grid) {
GridStackDragDropPlugin.call(this, grid);
};
}
JQueryUIGridStackDragDropPlugin.prototype = Object.create(GridStackDragDropPlugin.prototype);
JQueryUIGridStackDragDropPlugin.prototype.constructor = JQueryUIGridStackDragDropPlugin;

View file

@ -130,7 +130,7 @@
*/
function GridStackDragDropPlugin(grid) {
this.grid = grid;
};
}
GridStackDragDropPlugin.prototype.resizable = function(el, opts) {
return this;
@ -146,7 +146,7 @@
*/
function JQueryUIGridStackDragDropPlugin(grid) {
GridStackDragDropPlugin.call(this, grid);
};
}
JQueryUIGridStackDragDropPlugin.prototype = Object.create(GridStackDragDropPlugin.prototype);
JQueryUIGridStackDragDropPlugin.prototype.constructor = JQueryUIGridStackDragDropPlugin;