Advertisement
orenchuck

pampers delete assistant

Feb 22nd, 2023 (edited)
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. (function() {
  2. var allElements = document.querySelectorAll('#basic [tabindex] *');
  3. allElements.forEach(function(item) {
  4. if (/, Assistant$/.test(item.style.fontFamily)) {
  5. item.style.fontFamily = item.style.fontFamily.replace(/, Assistant$/, '');
  6. }
  7. });
  8. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement