/* * ART-PICTURE GALLERY JS * https://art-picturedesign.de/art-picture-gallery/ * * Copyright 2017, Jens Wiecker * https://art-picturedesign.de */ jQuery(document).ready(function($) { $("#template_auswahl").addClass('active'); $("#header_txt").html('Art Picture Gallery Freigaben.

' + '

Falls Sie Hilfe benötigen, finden Sie '+ 'hier eine ausführliche Beschreibung einzelner Funtionen.

'); }); (function (jQuery){ window.$ = jQuery.noConflict(); })(jQuery); user_selected() function load_user_selected_image(fid){ $.post(apg_ajax_obj.ajax_url, { '_ajax_nonce': apg_ajax_obj.nonce, 'action':"add_apgGalleryTemplate", 'class':"UserHandler", 'method': "load_load_user_selected_image+load", 'fid':fid }, function(data) { if(data.record.status){ $("#select_template").empty(); $("#select_template").html(data.record.template); } }); } function user_selected(){ $.post(apg_ajax_obj.ajax_url, { '_ajax_nonce': apg_ajax_obj.nonce, 'action':"add_apgGalleryTemplate", 'class':"UserHandler", 'method': "load_user_selected+load", }, function(data) { $("#select_template").html(data.record.template); }); }