updated plugin GP Premium version 1.11.2

This commit is contained in:
2020-08-13 14:53:39 +00:00
committed by Gitium
parent 3f0f8d3ac9
commit 885bbdd113
151 changed files with 11329 additions and 6954 deletions

View File

@ -0,0 +1,13 @@
jQuery( document ).ready( function( $ ) {
$( '.post-type-gp_elements .page-title-action' ).on( 'click', function( e ) {
e.preventDefault();
$( '.choose-element-type-parent' ).show();
} );
$( '.close-choose-element-type' ).on( 'click', function( e ) {
e.preventDefault();
$( '.choose-element-type-parent' ).hide();
} );
} );