// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
/
assets
/
js
/
admin
[ PARENT ]
EDIT :: info.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_showInformation"); var bodyClass = apeGalleryDialog.data("body"); if(bodyClass) jQuery("body").addClass(bodyClass); apeGalleryDialog.dialog({ 'dialogClass' : 'wp-dialog', 'title': apeGalleryDialog.data('title'), 'modal' : true, 'autoOpen' : apeGalleryDialog.data('open'), 'width': '450', 'maxWidth': 450, 'height': 'auto', 'fluid': true, 'resizable': false, 'responsive': true, 'draggable': false, 'closeOnEscape' : true, 'buttons' : [{ 'text' : apeGalleryDialog.data('close'), 'class' : 'button button-default wpape_dialog_close', 'click' : function() { jQuery(this).dialog('close'); } }, { 'text' : apeGalleryDialog.data('info'), 'class' : 'button-primary wpape_getproversion_blank wpape_close_dialog', 'click' : function(){} } ], open: function( event, ui ) {} }); window['apeGalleryDialog'] = apeGalleryDialog; jQuery(".ui-dialog-titlebar-close").addClass("ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close"); jQuery('.wpape-block-premium').click( function(event ){ event.preventDefault(); apeGalleryDialog.dialog("open"); }); });
SAVE
CANCEL