2020-08-13 14:53:39 +00:00
|
|
|
jQuery( document ).ready( function( $ ) {
|
2020-08-24 15:44:54 +00:00
|
|
|
$( '.post-type-gp_elements .page-title-action:not(.legacy-button)' ).on( 'click', function( e ) {
|
2020-08-13 14:53:39 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$( '.choose-element-type-parent' ).show();
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.close-choose-element-type' ).on( 'click', function( e ) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$( '.choose-element-type-parent' ).hide();
|
|
|
|
} );
|
|
|
|
} );
|