Plugin Directory

Changeset 600605


Ignore:
Timestamp:
09/18/2012 03:39:42 PM (14 years ago)
Author:
TM3909
Message:

Bugfix: Repeating ID issue related to the size perameter.
http://wordpress.org/support/topic/plugin-wpsocialite-id-repeated?replies=2#post-3177325

Location:
wpsocialite/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wpsocialite/trunk/lib/wpsocialite.css

    r598434 r600605  
    2020 */
    2121
    22 #large { display: block; list-style: none; padding: 0; margin: 20px; }
    23 #large > li { display: block; margin: 0; padding: 10px; float: left; }
    24 #large .socialite { display: block; position: relative; background: url('social-sprite.png') 0 0 no-repeat; }
    25 #large .socialite-loaded { background: none !important; }
    26 #large .twitter-share { width: 55px; height: 65px; background-position: 0 0; }
    27 #large .googleplus-one { width: 50px; height: 65px; background-position: -75px 0; }
    28 #large .facebook-like { width: 50px; height: 65px; background-position: -145px 0; }
    29 #large .linkedin-share { width: 60px; height: 65px; background-position: -215px 0; }
    30 #large .pinterest-pinit { width: 50px; height: 65px; background-position: -367px 0; }
     22.large { display: block; list-style: none; padding: 0; margin: 20px; }
     23.large > li { display: block; margin: 0; padding: 10px; float: left; }
     24.large .socialite { display: block; position: relative; background: url('social-sprite.png') 0 0 no-repeat; }
     25.large .socialite-loaded { background: none !important; }
     26.large .twitter-share { width: 55px; height: 65px; background-position: 0 0; }
     27.large .googleplus-one { width: 50px; height: 65px; background-position: -75px 0; }
     28.large .facebook-like { width: 50px; height: 65px; background-position: -145px 0; }
     29.large .linkedin-share { width: 60px; height: 65px; background-position: -215px 0; }
     30.large .pinterest-pinit { width: 50px; height: 65px; background-position: -367px 0; }
    3131
    3232/*
     
    3434 */
    3535
    36 #small-load { margin: 0 0 0.625em 0; font-weight: bold; padding: 5px; }
     36.small-load { margin: 0 0 0.625em 0; font-weight: bold; padding: 5px; }
    3737
    38 #small { display: block; list-style: none; padding: 10px; margin: 10px; }
    39 #small > li { margin: 0; display:inline; float:left; width:20%; }
    40 #small .socialite { display: block; position: relative; width: 150px; height: 30px; background: url('custom-default.png') 0 0 no-repeat; }
    41 #small .socialite-loaded { background: none; }
     38.small { display: block; list-style: none; padding: 10px; margin: 10px; }
     39.small > li { margin: 0; display:inline; float:left; width:20%; }
     40.small .socialite { display: block; position: relative; width: 150px; height: 30px; background: url('custom-default.png') 0 0 no-repeat; }
     41.small .socialite-loaded { background: none; }
    4242
    43 #small .twitter-share { background-position: 0 0; }
    44 #small .googleplus-one { background-position: 0 -45px; }
    45 #small .facebook-like { background-position: 0 -90px; }
    46 #small .linkedin-share { background-position: 0 -135px; }
    47 #small .pinterest-pinit { background-position: 0 -175px; }
     43.small .twitter-share { background-position: 0 0; }
     44.small .googleplus-one { background-position: 0 -45px; }
     45.small .facebook-like { background-position: 0 -90px; }
     46.small .linkedin-share { background-position: 0 -135px; }
     47.small .pinterest-pinit { background-position: 0 -175px; }
  • wpsocialite/trunk/readme.txt

    r599788 r600605  
    55Requires at least: 3.0
    66Tested up to: 3.4.2
    7 Stable tag: 1.2
     7Stable tag: 1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 1.3 =
     53* Major Bugfix, CSS ID calls causing feed issues. Changed to classes.
     54
     55
    5256= 1.2 =
    5357* Added ability to enable/disable different social networks. Choose which to display!
  • wpsocialite/trunk/wpsocialite.php

    r599788 r600605  
    55Description: No one likes long load times! Yet we all want to be able to share our content via Facebook, Twitter, and all other social networks. These take a long time to load. Paradox? Not anymore! With WPSocialite (utilizing David Bushnell's amazing SocialiteJS plugin [http://www.socialitejs.com/]) we can manage the loading process of our social sharing links. Load them on hover, on page scroll, and more!
    66Author: Tom Morton
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://twmorton.com/
    99
     
    122122            $return = '';
    123123
    124             $return .= '<ul id="'.$size.'" class="social-buttons cf">';
     124            $return .= '<ul class="'.$size.'" class="social-buttons cf">';
    125125
    126126            foreach ($buttons as $button){
Note: See TracChangeset for help on using the changeset viewer.