Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- (function() {
- function updateCampaignFontSizes() {
- var adoricInputs = document.querySelectorAll('.__ADORIC__ INPUT');
- Array.from(adoricInputs).forEach( function(item) {
- var currentFontSize = item.style.fontSize;
- item.style.setProperty('font-size', currentFontSize, 'important');
- });
- }
- if (document.readyState === 'loading') {
- document.addEventListener('DOMContentLoaded', updateCampaignFontSizes);
- } else {
- updateCampaignFontSizes();
- }
- })();
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement