Skip to content

Commit

Permalink
Eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinrivero committed Sep 19, 2024
1 parent 2460e10 commit 1044c23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acrobat/blocks/verb-widget/verb-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const EOLBrowserPage = 'https://acrobat.adobe.com/home/index-browser-eol.html';
// };

const setDraggingClass = (widget, shouldToggle) => {
shouldToggle ? widget.classList.add('dragging') : widget.classList.remove('dragging');
widget.classList.toggle('dragging', shouldToggle);
};

function prefetchNextPage(verb) {
Expand Down

0 comments on commit 1044c23

Please sign in to comment.