Skip to content

Commit

Permalink
Drop ctrl-key requirement in "Purge all caches" operation
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Feb 26, 2021
1 parent ac9a301 commit 972feae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/3p-filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ uDom('#ignoreGenericCosmeticFilters').on('change', onFilteringSettingsChanged);
uDom('#buttonApply').on('click', ( ) => { buttonApplyHandler(); });
uDom('#buttonUpdate').on('click', ( ) => { buttonUpdateHandler(); });
uDom('#buttonPurgeAll').on('click', ev => {
buttonPurgeAllHandler(ev.ctrlKey && ev.shiftKey);
buttonPurgeAllHandler(ev.shiftKey);
});
uDom('#lists').on('change', '.listEntry input', onListsetChanged);
uDom('#lists').on('click', '.listEntry .remove', onRemoveExternalList);
Expand Down

0 comments on commit 972feae

Please sign in to comment.