/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/themes/twentytwentyone/assets/js
NameSizeModeActions
customize-helpers.js11000644editdlrm
customize-preview.js25330644editdlrm
customize.js10290644editdlrm
dark-mode-toggler.js22450644editdlrm
editor-dark-mode-support.js12430644editdlrm
editor.js9210644editdlrm
palette-colorpicker.js15930644editdlrm
polyfills.js11270644editdlrm
primary-navigation.js60470644editdlrm
responsive-embeds.js11270644editdlrm
skip-link-focus-fix.js8320644editdlrm
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/themes/twentytwentyone/assets/js/editor.js (921B)
/* global setTimeout */ wp.domReady( function() { // Unregister "Wide" Separator Style. wp.blocks.unregisterBlockStyle( 'core/separator', 'wide' ); // Add to ".block-editor__typewriter" the "is-dark-theme" class if needed. function twentytwentyoneCopyDarkThemeClass() { var editor, attemptDelay = 25, attempt = 0, maxAttempts = 10; if ( ! document.body.classList.contains( 'is-dark-theme' ) ) { return; } editor = document.querySelector( '.block-editor__typewriter' ); if ( null === editor ) { // Try again. if ( attempt < maxAttempts ) { setTimeout( function() { twentytwentyoneCopyDarkThemeClass(); }, attemptDelay ); // Increment the attempts counter. attempt++; // Double the delay, give the server some time to breathe. attemptDelay *= 2; } return; } editor.classList.add( 'is-dark-theme' ); } twentytwentyoneCopyDarkThemeClass(); } );