Skip to content

Commit

Permalink
Fix eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsnik committed Jun 24, 2018
1 parent a084dd7 commit 15a2a16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/libs/observer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ let callback = () => {};
function ready(selector, fn) {
const doc = window.document;
const MutationObserver =
window.MutationObserver ||
window.WebKitMutationObserver ||
window.MozMutationObserver;
window.MutationObserver ||
window.WebKitMutationObserver ||
window.MozMutationObserver;

const observer = new MutationObserver(check);
callback = fn;
Expand Down

0 comments on commit 15a2a16

Please sign in to comment.