mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +01:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
|
/**
|
||
|
* Remove squared button style
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
/* global wp */
|
||
|
wp.domReady( function() {
|
||
|
wp.blocks.unregisterBlockStyle( 'core/button', 'squared' );
|
||
|
} );
|