Skip to content

Commit

Permalink
Add todo comment
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano committed Oct 18, 2023
1 parent 269c210 commit a14ca19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions classes/class-enqueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ public function __construct() {
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );

// Enqueue block editor scripts
// TODO: Once the minimum WordPress version supported by the plugin is 6.3 or higher,
// Use enqueue_block_assets instead of enqueue_block_editor_assets.
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_editor_scripts' ) );

// Enqueue admin option page scripts
Expand Down
2 changes: 2 additions & 0 deletions src/editor-style.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Hack to load css files into iframe editor instances on WordPress 6.0.
// https://github.com/WordPress/gutenberg/pull/40842
// TODO: Once the minimum WordPress version supported by the plugin
// is 6.3 or higher, This selector should no longer be needed.
.wp-block-fsb-flexible-spacer {
background: transparent;
}
Expand Down

0 comments on commit a14ca19

Please sign in to comment.