// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
/
assets
/
js
/
admin
[ PARENT ]
EDIT :: post.editor.js
/* * Ape Gallery http://wpape.net * Version: 1.2.4 - 61253 * Author: Wp Ape (c) * Author URI: http://wpape.net * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Date: Thu, 08 Dec 2016 16:31:35 GMT */ jQuery(function(){ var apeGalleryDialog = jQuery("#wpape-gallery").appendTo("body"); apeGalleryDialog.dialog({ 'dialogClass' : 'wp-dialog', 'title': wpape_gallery_trans.apeGalleryTitle, 'modal' : true, 'autoOpen' : false, 'width': 'auto', 'maxWidth': 700, 'height': 'auto', 'fluid': true, 'resizable': false, 'responsive': true, 'draggable': false, 'closeOnEscape' : true, 'buttons' : [{ 'text' : wpape_gallery_trans.closeButton, 'class' : 'button-default', 'click' : function() { jQuery(this).dialog('close'); } },{ 'text' : wpape_gallery_trans.insertButton, 'class' : 'button-primary', 'click' : function() { var galleryId = jQuery('#page_id', apeGalleryDialog).val(); window.parent.send_to_editor('[ape-gallery '+galleryId+']'); window.parent.tb_remove(); jQuery(this).dialog('close'); } }], open: function( event, ui ) {} }); jQuery(document).on( 'click', '#insert-wpape-gallery', function(event) { apeGalleryDialog.dialog('open'); return false; }); });
SAVE
CANCEL