Plugin Directory

Changeset 907015


Ignore:
Timestamp:
05/02/2014 05:43:52 PM (12 years ago)
Author:
Social Exchange
Message:

issue fixed

Location:
social-exchange-plugin/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • social-exchange-plugin/trunk/js/sxscripts.js

    r901737 r907015  
    1010jQuery(document).ready(function(){
    1111
    12     jQuery(".sx_need").on({ 
     12    jQuery(".sx_need").on({
    1313
    14         "mouseenter":function(){ 
     14        "mouseenter":function(){
    1515
    16              if(jQuery(this).find(".sx-share-need-list").is(":visible")) { 
     16             if(jQuery(this).find(".sx-share-need-list").is(":visible")) {
    1717                jQuery(this).find(".sx-save-need-list").show();
    18                 jQuery(this).find(".sx-share-need-list").width(jQuery(this).find(".sx-share-need-list").width() - jQuery(this).find(".sx-save-need-list").width()); 
    19             } 
     18                jQuery(this).find(".sx-share-need-list").width(jQuery(this).find(".sx-share-need-list").width() - jQuery(this).find(".sx-save-need-list").width());
     19            }
    2020        },
    2121        "mouseleave":function(){
    22              if(jQuery(this).find(".sx-share-need-list").is(":visible")) { 
     22             if(jQuery(this).find(".sx-share-need-list").is(":visible")) {
    2323                jQuery(this).find(".sx-save-need-list").hide();
    2424                jQuery(this).find(".sx-share-need-list").width(jQuery(this).find(".sx-share-need-list").width() +jQuery(this).find(".sx-save-need-list").width());
    2525            }
    2626        }
    27     }); 
     27    });
    2828
    2929    jQuery("#sx-ok-notice").on("click",function(){
     
    4040            SXshowError("You can not share localhost posts");
    4141            return false;
    42         } 
    43         if jQuery("#sample-permalink").text().indexOf("?") > -1) {
     42        }
     43        if(jQuery("#sample-permalink").text().indexOf("?") > -1) {
    4444            SXshowNotice("Ugly permalinks like \""+jQuery("#sample-permalink").text()+"\" are not search engine friendly. Are you sure this is the final URL you will use for this post?");
    4545            okn = false;
     
    5353        if(okn){
    5454            jQuery(this).closest("form").submit();
    55         } 
     55        }
    5656        return false;
    5757    });
  • social-exchange-plugin/trunk/readme.txt

    r905414 r907015  
    8484== Changelog ==
    8585
     86= 2.7.1 - 2014-05-02 =
     87* Fixing campaign cannot be started after opt-in skip
     88
    8689= 2.7 - 2014-04-24 =
    8790* Added newsletter options for free points
  • social-exchange-plugin/trunk/social-exchange.php

    r901737 r907015  
    44        Plugin URI: http://www.MoreSharesForYou.com/
    55        Description: MoreSharesForYou is a content discovery and promotion tool that gets your content viewed and shared by other people.
    6         Version: 2.7
     6        Version: 2.7.1
    77        Author: MoreSharesForYou team
    88        Author URI: http://www.MoreSharesForYou.com/
     
    1717        wp_die('More Shares For You - Basic Version cannot be activated. Please deactivate the PRO version first. <br /><br />Back to the WordPress <a href="'.get_admin_url(null, 'plugins.php').'">Plugins page</a>.');
    1818    }
    19     add_option('sx_version','2.7');
     19    add_option('sx_version','2.7.1');
    2020    if (get_option('sx_active_campaigns') === FALSE)
    2121        add_option('sx_active_campaigns',array());
Note: See TracChangeset for help on using the changeset viewer.