D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ensad
/
www
/
wp-content
/
plugins
/
eventON
/
ajde
/
Filename :
ajde-wp-admin.js
back
Copy
/* * all wp-admin scripts for ajde library * @version 2.5 */ jQuery(document).ready(function($){ // lightbox hide $('body').on('click',' .ajde_close_pop_trig',function(){ hide_popupwindowbox( $(this).closest('.ajde_admin_lightbox') ); }); $('body').on('click',' .ajde_close_pop_btn',function(){ var obj = $(this).parent(); hide_popupwindowbox( $(this).closest('.ajde_admin_lightbox') ); }); $(document).mouseup( function(event){ if( $(event.target).hasClass('evo_content_inin') ){ CONTAIN = $(event.target).find('.ajde_popup'); if(!CONTAIN.hasClass('nooutside')){ CONTAIN.find('.ajde_close_pop_btn').trigger('click'); } } }); $('body').on('click','.ajde_close_btn',function(){ $(this).closest('.ajde_close_elm').hide(); if( $(this).data('remove') !== undefined && $(this).data('remove') == 'yes') $(this).closest('.ajde_close_elm').remove(); }); // trigger hide popup $('body').on('evoadmin_lightbox_hide',function(event, lightboxclass){ lightboxELM = $('.ajde_admin_lightbox.'+lightboxclass); hide_popupwindowbox( lightboxELM ); }); function hide_popupwindowbox( lightboxELM ){ if(! lightboxELM.hasClass('show')) return false; Close = (lightboxELM.parent().find('.ajde_admin_lightbox.show').length == 1)? true: false; lightboxELM.removeClass('show'); setTimeout( function(){ if(Close){ $('body').removeClass('evo_overflow'); $('html').removeClass('evo_overflow'); } }, 300); } // OPEN POPUP BOX // everywhere in wp-admin $('body').on('click','.ajde_popup_trig', function(){ //console.log('tt'); ajde_popup_open( $(this)); }); // popup open // 2.6.9 $('body').on('evo_open_admin_lightbox', function(event, lb_class){ ajde_open_any_lightbox(lb_class); }); function ajde_open_any_lightbox(lb_class){ LIGHTBOX = $('.ajde_admin_lightbox.'+lb_class).eq(0); // if already open if(LIGHTBOX.is("visible")===true) return false; POPUP = LIGHTBOX.find('.ajde_popup'); POPUP.find('.message').removeClass('bad good').hide(); // open lightbox LIGHTBOX.addClass('show'); $('body').addClass('evo_overflow'); $('html').addClass('evo_overflow'); } function ajde_popup_open(obj){ var popc = obj.data('popc'); // check if specific lightbox requested var LIGHTBOX = (typeof popc !== 'undefined' && popc !== false)? $('.ajde_admin_lightbox.'+popc).eq(0):$('.ajde_admin_lightbox.regular').eq(0); var POPUP = LIGHTBOX.find('.ajde_popup'); // alter lightbox title if( obj.data('t') !== undefined){ LIGHTBOX.find('.ajde_lightbox_title').html( obj.data('t') ); } if(LIGHTBOX.is("visible")===true) return false; // append textbox id to popup if given if(obj.attr('data-textbox')!==''){ POPUP.attr({'data-textbox':obj.attr('data-textbox')}); } // dynamic content within the site var dynamic_c = obj.attr('data-dynamic_c'); if(typeof dynamic_c !== 'undefined' && dynamic_c !== false){ var content_id = obj.attr('data-content_id'); var content = $('#'+content_id).html(); LIGHTBOX.find('.ajde_popup_text').html( content); } // run ajax to load content for the lightbox inside if( obj.data('ajax') == 'yes' && obj.data('d') !== 'undefined'){ var D = {}; D = obj.data('d'); $.ajax({ beforeSend: function(){ }, url: the_ajax_script.ajaxurl, type: 'POST',dataType:'json', data: D, success:function(data){ LIGHTBOX.find('.ajde_popup_text').html( data.html); },complete:function(){ hide_pop_loading(); } }); } // if content coming from a AJAX file var attr_ajax_url = obj.attr('ajax_url'); if(typeof attr_ajax_url !== 'undefined' && attr_ajax_url !== false){ $.ajax({ beforeSend: function(){ show_pop_loading(); }, url:attr_ajax_url, success:function(data){ LIGHTBOX.find('.ajde_popup_text').html( data); },complete:function(){ hide_pop_loading(); } }); } // change title if present var poptitle = obj.attr('poptitle'); if(typeof poptitle !== 'undefined' && poptitle !== false){ LIGHTBOX.find('.ajde_header p').html(poptitle); } POPUP.find('.message').removeClass('bad good').hide(); // open lightbox LIGHTBOX.addClass('show'); $('body').addClass('evo_overflow'); $('html').addClass('evo_overflow'); // $('html, body').animate({scrollTop:0}, 700); // $('#ajde_popup_bg').fadeIn(); } // popup lightbox functions // lightbox messages $('body').on('ajde_lightbox_show_msg',function(event,message, boxclassname, type, donthide, hideMsg){ LIGHTBOX = $('.'+boxclassname+'.ajde_admin_lightbox'); type = (type!='bad')? 'good':'bad'; LIGHTBOX.find('p.message').removeClass('bad good').addClass(type).html(message).fadeIn(); // hide lightbox if good after 2 seconds dh = (donthide !='' && donthide == false ) ? true: false; if(type=='good' && dh) setTimeout(function(){ hide_popupwindowbox(LIGHTBOX) }, 2000); // hide the message only after 2 seconds if( hideMsg) setTimeout(function(){ LIGHTBOX.find('p.message').hide() }, 2000); }); // hide lightbox message $('body').on('ajde_lightbox_hide_msg',function(event,boxclassname){ LIGHTBOX = $('.'+boxclassname+'.ajde_admin_lightbox'); LIGHTBOX.find('p.message').fadeOut(); }); function show_pop_bad_msg(msg){ $('.ajde_popup').find('.message').removeClass('bad good').addClass('bad').html(msg).fadeIn(); } function show_pop_good_msg(msg){ $('.ajde_popup').find('.message').removeClass('bad good').addClass('good').html(msg).fadeIn(); } function show_pop_loading(){ $('.ajde_popup_text').css({'opacity':0.3}); $('#ajde_loading').fadeIn(); } function hide_pop_loading(){ $('.ajde_popup_text').css({'opacity':1}); $('#ajde_loading').fadeOut(20); } // yes no button $('body').on('click','.ajde_yn_btn', function(){ var obj = $(this); var afterstatement = obj.attr('afterstatement'); var newval = 'yes'; // yes if(obj.hasClass('NO')){ obj.removeClass('NO'); obj.siblings('input').val('yes'); // afterstatment if(afterstatement!=''){ var type = (obj.attr('as_type')=='class')? '.':'#'; $('body').find(type+ afterstatement).show().addClass('tt'); } }else{//no obj.addClass('NO'); obj.siblings('input').val('no'); newval = 'no'; if(afterstatement!=''){ var type = (obj.attr('as_type')=='class')? '.':'#'; $('body').find(type+afterstatement).hide(); } } $('body').trigger('evo_yesno_changed',[newval, obj, afterstatement]); }); // font awesome selector var FA = $('.ajde_fa_icons_selector'); $('.ajde_fa_icons_selector').remove(); $('body').append(FA); $('.ajde_icons').html('<em class="ajde_icon_close">X</em>'); var fa_icon_selection = ''; $('body').on('click','.ajde_icons', function(){ var poss = $(this).offset(); // /console.log(poss); $('.ajde_fa_icons_selector').css({'top':(poss.top-220)+'px', 'left':(poss.left-68)}).fadeIn('fast'); fa_icon_selection = $(this); }); // remove icon $('body').on('click','i.ajde_icons em', function(){ $(this).parent().attr({'class':'ajde_icons default'}); $(this).parent().siblings('input').val(''); }); //selection of new font icon $('.ajde_fa_icons_selector').on('click','li', function(){ var icon = $(this).find('i').data('name'); //console.log(icon); fa_icon_selection.attr({'class':'ajde_icons default fa '+icon}); fa_icon_selection.siblings('input').val(icon); $('.ajde_fa_icons_selector').fadeOut('fast'); }); // close with click outside popup box when pop is shown $(document).mouseup(function (e){ var container=$('.ajde_fa_icons_selector'); if (!container.is(e.target) // if the target of the click isn't the container... && container.has(e.target).length === 0) // ... nor a descendant of the container { $('.ajde_fa_icons_selector').fadeOut('fast'); } }); // color picker if( $.isFunction($.fn.ColorPicker) ) { $('.colorselector').ColorPicker({ onBeforeShow: function(){ $(this).ColorPickerSetColor( $(this).attr('hex')); }, onChange:function(hsb, hex, rgb, el){ //console.log(hex+' '+rgb); CIRCLE = $('body').find('.colorpicker_on'); CIRCLE.css({'backgroundColor': '#' + hex}).attr({'title': '#' + hex, 'hex':hex}); obj_input = CIRCLE.siblings('input.backender_colorpicker'); obj_input.attr({'value':hex}); }, onSubmit: function(hsb, hex, rgb, el) { var obj_input = $(el).siblings('input.backender_colorpicker'); if($(el).hasClass('rgb')){ $(el).siblings('input.rgb').attr({'value':rgb.r+','+rgb.g+','+rgb.b}); //console.log(rgb); } obj_input.attr({'value':hex}); $(el).css('backgroundColor', '#' + hex); $(el).attr({'title': '#' + hex, 'hex':hex}); $(el).ColorPickerHide(); $('body').find('.colorpicker_on').removeClass('colorpicker_on'); }, onHide: function(colpkr){ $('body').find('.colorpicker_on').removeClass('colorpicker_on'); } }).bind('click',function(){ $(this).addClass('colorpicker_on'); }); } function colorPickMulti(itemid, cp){ } });