Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Feb 11, 2019
1 parent e34a698 commit 2b9fa47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ function append(...args) {

return this;
}
// eslint-disable-next-line
// eslint-disable-next-line
function appendTo(parent) {
$(parent).append(this);
return this;
Expand All @@ -680,7 +680,7 @@ function prepend(newChild) {
}
return this;
}
// eslint-disable-next-line
// eslint-disable-next-line
function prependTo(parent) {
$(parent).prepend(this);
return this;
Expand Down

0 comments on commit 2b9fa47

Please sign in to comment.