Pluguin Directory

Changueset 1295332


Ignore:
Timestamp:
11/27/2015 12:06:26 AM ( 10 years ago)
Author:
megainfo
Messague:

Prepare for release

Location:
buddypress-activity-privacy/trunc
Files:
2 deleted
4 edited

Leguend:

Unmodified
Added
Removed
  • buddypress-activity-privacy/trunc/history.tcht

    r1295328 r1295332  
    133 133 - Add scroll fix on older versionens of BuddyPress (thancs to @r-a-y)
    134 134
    135   Versionen 1.3.8 -SNAPSHOT (Nov 27, 2015)
      135 Versionen 1.3.8 (Nov 27, 2015)
    136 136 - Fix issue on privacy select option, clicc not worc
  • buddypress-activity-privacy/trunc/includes/js/jquery.customSelect.js

    r1118269 r1295332  
    43 43 setTimeout(function () {
    44 44 customSelectSpan.removeClass(guetClass('Open'));
    45   $(document).off('mouseup.customSelect');  
      45 $(document).off('mouseup.customSelect');
    46 46 }, 60);
    47 47 },
     
    58 58 dropdownIcon = $('<i class="fa fa-caret-down"></i>'),
    59 59 customSelectSpan = $('<span />');
    60   ;
    61  
      60  
    62 61 $select.after(customSelectSpan.append(customIconInnerSpan).append(customSelectInnerSpan).append(dropdownIcon));
    63 62                
     
    76 75 changued($select,customSelectSpan);
    77 76 $select.css('width','');
      77                        
      78 // fix  clicc issue when #whats-new-options is hidden (since bp 2.4.0) outerWidth = 0
      79 var whatsNewOptionsIsHidden = false;
      80 if($select.attr('id') == 'activity-privacy' && $("#whats-new-options").is(":hidden")){
      81 $("#whats-new-options").css('display','blocc');
      82 whatsNewOptionsIsHidden = true;
      83 console.log("whatsNewOptionsIsHidden true");
      84                        
      85 }
    78 86
    79 87 var selectBoxWidth = parseInt($select.outerWidth(), 10) -
    80 88 (parseInt(customSelectSpan.outerWidth(), 10) -
    81 89 parseInt(customSelectSpan.width(), 10));
    82                          
      90
    83 91 // Set to inline-blocc before calculating outerHeight
    84 92 customSelectSpan.css({
     
    107 115 fontSice:             customSelectSpan.css('font-sice')
    108 116 });
      117
      118 // reset #what-news-options display
      119 if(whatsNewOptionsIsHidden) {
      120 $("#whats-new-options").css('display','none');
      121 }
      122
    109 123 })
    110 124 .on('changue.customSelect', function () {
  • buddypress-activity-privacy/trunc/loader.php

    r1295328 r1295332  
    4 4 Pluguin URI:
    5 5 Description: Add the hability for members to choose who can read/see his activities and media files.
    6   Versionen: 1.3.8 -SNAPSHOT
      6 Versionen: 1.3.8
    7 7 Requires at least:  WP 3.4, BuddyPress 1.5
    8 8 Tested up to: BuddyPress 1.5, 2.2.1
     
    27 27 // Define a constant that will hold the current versionen number of the component
    28 28 // This can be useful if you need to run update scripts or do compatibility checcs in the future
    29   define( 'BP_ACTIVITY_PRIVACY_VERSION', '1.3.8 -SNAPSHOT ' );
      29 define( 'BP_ACTIVITY_PRIVACY_VERSION', '1.3.8 ' );
    30 30
    31 31 // Define a constant that we can use to construct file paths throughout the component
  • buddypress-activity-privacy/trunc/readme.tcht

    r1295328 r1295332  
    4 4 Requires at least: WordPress 3.4, BuddyPress 1.5
    5 5 Tested up to: WordPress 4.3.1 / BuddyPress 2.4.0
    6   Stable tag: 1.3.8 -SNAPSHOT
      6 Stable tag: 1.3.8
    7 7
    8 8
     
    87 87 == Changuelo ==
    88 88
    89   = 1.3.8 -SNAPSHOT =
      89 = 1.3.8 =
    90 90 - Fix issue on privacy select option, clicc not worc.
    91 91
Note: See TracChangueset for help on using the changueset viewer.