/
home2
/
dakshskx
/
dakshaseo.com
/
simple-share-buttons-adder
/
js
/
/home2/dakshskx/dakshaseo.com/simple-share-buttons-adder/js
mkdir
upload
Name
Size
Mode
Actions
12/
-
0755
rm
ssba_admin.js
6316
0644
edit
dl
rm
Edit:
/home2/dakshskx/dakshaseo.com/simple-share-buttons-adder/js/ssba_admin.js
(6316B)
jQuery(document).ready(function() { //------- INCLUDE LIST ----------// // add drag and sort functions to include table jQuery(function() { jQuery( "#ssbasort1, #ssbasort2" ).sortable({ connectWith: ".connectedSortable" }).disableSelection(); }); // extract and add include list to hidden field jQuery('#ssba_selected_buttons').val(jQuery('#ssbasort2 li').map(function() { // For each <li> in the list, return its inner text and let .map() // build an array of those values. return jQuery(this).attr('id'); }).get()); // after a change, extract and add include list to hidden field jQuery('.ssba-include-list').mouseout(function() { jQuery('#ssba_selected_buttons').val(jQuery('#ssbasort2 li').map(function() { // For each <li> in the list, return its inner text and let .map() // build an array of those values. return jQuery(this).attr('id'); }).get()); }); //------- TABS -----------// // basic tab jQuery('#ssba_tab_basic').click(function(){ // hide other tabs in case needed jQuery("#ssba_settings_styling").hide(); jQuery("#ssba_settings_advanced").hide(); jQuery("#ssba_settings_counters").hide(); // remove selected classes if needed jQuery('#ssba_tab_styling').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_advanced').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_counters').removeClass('ssba-selected-tab'); // show chosen tab jQuery("#ssba_settings_basic").show(); // add selected tab class jQuery('#ssba_tab_basic').addClass('ssba-selected-tab'); }); // styling tab jQuery('#ssba_tab_styling').click(function(){ // hide other tabs jQuery("#ssba_settings_basic").hide(); jQuery("#ssba_settings_advanced").hide(); jQuery("#ssba_settings_counters").hide(); // remove selected classes if needed jQuery('#ssba_tab_basic').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_advanced').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_counters').removeClass('ssba-selected-tab'); // show chosen tab jQuery("#ssba_settings_styling").show(); // add selected tab class jQuery('#ssba_tab_styling').addClass('ssba-selected-tab'); }); // counters tab jQuery('#ssba_tab_counters').click(function(){ // hide other tabs jQuery("#ssba_settings_basic").hide(); jQuery("#ssba_settings_advanced").hide(); jQuery("#ssba_settings_styling").hide(); // remove selected classes if needed jQuery('#ssba_tab_basic').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_advanced').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_styling').removeClass('ssba-selected-tab'); // show chosen tab jQuery("#ssba_settings_counters").show(); // add selected tab class jQuery('#ssba_tab_counters').addClass('ssba-selected-tab'); }); // advanced tab jQuery('#ssba_tab_advanced').click(function(){ // hide other tabs jQuery("#ssba_settings_basic").hide(); jQuery("#ssba_settings_styling").hide(); jQuery("#ssba_settings_counters").hide(); // remove selected classes if needed jQuery('#ssba_tab_basic').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_styling').removeClass('ssba-selected-tab'); jQuery('#ssba_tab_counters').removeClass('ssba-selected-tab'); // show chosen tab jQuery("#ssba_settings_advanced").show(); // add selected tab class jQuery('#ssba_tab_advanced').addClass('ssba-selected-tab'); }); // support modal jQuery('#ssba_support').click(function(){ // show support modal jQuery("#ssba-support-modal").show(); }); // support modal jQuery('#ssba-support-modal').click(function(){ // show support modal jQuery("#ssba-support-modal").hide(); }); // color picker jQuery('#ssba_font_color').wpColorPicker(); jQuery('#ssba_div_border').wpColorPicker(); jQuery('#ssba_div_background').wpColorPicker(); // when custom style button is clicked jQuery('#ssba_button_custom_styles').click(function(){ // hide show custom css and hide normal settings jQuery("#ssba_option_custom_css").show(600); jQuery("#ssba_normal_settings").hide(600); }); // when assisted CSS button is clicked jQuery('#ssba_button_normal_settings').click(function(){ // hide show custom css and hide normal settings jQuery("#ssba_normal_settings").show(600); jQuery("#ssba_option_custom_css").hide(600); // clear the contents of the custom css field // this must be done so that the custom styles don't // continue to overwrite other styles jQuery('#ssba_custom_styles').val(''); }); // when counter CSS is clicked jQuery('#ssba_counter_normal_settings').click(function(){ // hide show custom css and hide normal settings jQuery("#ssba_counter_settings").show(600); jQuery("#ssba_counter_custom_css").hide(600); // clear the contents of the custom css field // this must be done so that the custom styles don't // continue to overwrite other styles jQuery('#ssba_share_count_css').val(''); }); // when when counter CSS is clicked jQuery('#ssba_counter_custom_styles').click(function(){ // hide show custom css and hide normal settings jQuery("#ssba_counter_custom_css").show(600); jQuery("#ssba_counter_settings").hide(600); }); // when changing image sets jQuery('#ssba_image_set').change(function(){ if (jQuery("#ssba_image_set").val() == "custom" ) { jQuery("#ssba-custom-images").show(600); } if(jQuery("#ssba_image_set").val() != "custom" ) { jQuery("#ssba-custom-images").hide(600); } }); // ----- IMAGE UPLOADS ------ // // custom image upload jQuery('.customUpload').click(function() { // get custom data field for the text field to return the url to var strInputID = jQuery(this).data('ssba-input'); // simple function to change button text after loading window ssba_tb_interval = setInterval( function() { jQuery('#TB_iframeContent').contents().find('.savesend .button').val('Use this image'); }, 200 ); // load thickbox window with upload options tb_show('Upload Image', 'media-upload.php?type=image&TB_iframe=true'); // send image back to the text field window.send_to_editor = function(html) { imgurl = jQuery('img',html).attr('src'); jQuery('#' + strInputID).val(imgurl); tb_remove(); }; return false; }); });
Save
cmd:
run