Changeset 907015
- Timestamp:
- 05/02/2014 05:43:52 PM (12 years ago)
- Location:
- social-exchange-plugin/trunk
- Files:
-
- 3 edited
-
js/sxscripts.js (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
social-exchange.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-exchange-plugin/trunk/js/sxscripts.js
r901737 r907015 10 10 jQuery(document).ready(function(){ 11 11 12 jQuery(".sx_need").on({ 12 jQuery(".sx_need").on({ 13 13 14 "mouseenter":function(){ 14 "mouseenter":function(){ 15 15 16 if(jQuery(this).find(".sx-share-need-list").is(":visible")) { 16 if(jQuery(this).find(".sx-share-need-list").is(":visible")) { 17 17 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 } 20 20 }, 21 21 "mouseleave":function(){ 22 if(jQuery(this).find(".sx-share-need-list").is(":visible")) { 22 if(jQuery(this).find(".sx-share-need-list").is(":visible")) { 23 23 jQuery(this).find(".sx-save-need-list").hide(); 24 24 jQuery(this).find(".sx-share-need-list").width(jQuery(this).find(".sx-share-need-list").width() +jQuery(this).find(".sx-save-need-list").width()); 25 25 } 26 26 } 27 }); 27 }); 28 28 29 29 jQuery("#sx-ok-notice").on("click",function(){ … … 40 40 SXshowError("You can not share localhost posts"); 41 41 return false; 42 } 43 if jQuery("#sample-permalink").text().indexOf("?") > -1) {42 } 43 if(jQuery("#sample-permalink").text().indexOf("?") > -1) { 44 44 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?"); 45 45 okn = false; … … 53 53 if(okn){ 54 54 jQuery(this).closest("form").submit(); 55 } 55 } 56 56 return false; 57 57 }); -
social-exchange-plugin/trunk/readme.txt
r905414 r907015 84 84 == Changelog == 85 85 86 = 2.7.1 - 2014-05-02 = 87 * Fixing campaign cannot be started after opt-in skip 88 86 89 = 2.7 - 2014-04-24 = 87 90 * Added newsletter options for free points -
social-exchange-plugin/trunk/social-exchange.php
r901737 r907015 4 4 Plugin URI: http://www.MoreSharesForYou.com/ 5 5 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 7 7 Author: MoreSharesForYou team 8 8 Author URI: http://www.MoreSharesForYou.com/ … … 17 17 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>.'); 18 18 } 19 add_option('sx_version','2.7 ');19 add_option('sx_version','2.7.1'); 20 20 if (get_option('sx_active_campaigns') === FALSE) 21 21 add_option('sx_active_campaigns',array());
Note: See TracChangeset
for help on using the changeset viewer.