Skip to content

Commit

Permalink
fix: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
greatislander committed Jun 15, 2020
1 parent 50b3910 commit 308e763
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/assets/scripts/Pinecone/FilterList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class FilterList {
/**
* Resize function.
*/
removeOverlay( timeout ) { // eslint-disable-line no-unused-vars
removeOverlay( timeout ) {
timeout = null;

const viewportWidth = window.innerWidth || document.documentElement.clientWidth;
Expand All @@ -89,6 +89,8 @@ class FilterList {
this.showCtrl.parentNode.insertBefore( this.container, this.showCtrl.nextSibling );
document.body.classList.remove( 'has-modal' );
}

return timeout;
}

/**
Expand Down

0 comments on commit 308e763

Please sign in to comment.