Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
troolee committed Aug 18, 2016
1 parent 30b096d commit 78f0073
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/gridstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
*/
function GridStackDragDropPlugin(grid) {
this.grid = grid;
};
}

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

JQueryUIGridStackDragDropPlugin.prototype = Object.create(GridStackDragDropPlugin.prototype);
JQueryUIGridStackDragDropPlugin.prototype.constructor = JQueryUIGridStackDragDropPlugin;
Expand Down
4 changes: 2 additions & 2 deletions src/gridstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
*/
function GridStackDragDropPlugin(grid) {
this.grid = grid;
};
}

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

JQueryUIGridStackDragDropPlugin.prototype = Object.create(GridStackDragDropPlugin.prototype);
JQueryUIGridStackDragDropPlugin.prototype.constructor = JQueryUIGridStackDragDropPlugin;
Expand Down

0 comments on commit 78f0073

Please sign in to comment.