Changeset 10141
- Timestamp:
- 09/25/2015 02:01:55 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/admin/js/admin.js
r9819 r10141 5 5 * Activity reply object for the activity index screen 6 6 * 7 * @since BuddyPress (1.6)7 * @since 1.6.0 8 8 */ 9 9 var activityReply = { … … 12 12 * Attach event handler functions to the relevant elements. 13 13 * 14 * @since BuddyPress (1.6)14 * @since 1.6.0 15 15 */ 16 16 init : function() { … … 30 30 * Reveals the entire row when "reply" is pressed. 31 31 * 32 * @since BuddyPress (1.6)32 * @since 1.6.0 33 33 */ 34 34 open : function() { … … 47 47 * Hide and reset the entire row when "cancel", or escape, are pressed. 48 48 * 49 * @since BuddyPress (1.6)49 * @since 1.6.0 50 50 */ 51 51 close : function() { … … 67 67 * Submits "form" via AJAX back to WordPress. 68 68 * 69 * @since BuddyPress (1.6)69 * @since 1.6.0 70 70 */ 71 71 send : function() { … … 101 101 * send() error message handler 102 102 * 103 * @since BuddyPress (1.6)103 * @since 1.6.0 104 104 */ 105 105 error : function( r ) { … … 119 119 * send() success handler 120 120 * 121 * @since BuddyPress (1.6)121 * @since 1.6.0 122 122 */ 123 123 show : function ( xml ) { -
trunk/src/bp-activity/js/mentions.js
r10054 r10141 18 18 * 19 19 * @param {array|object} options If array, becomes the suggestions' data source. If object, passed as config to $.atwho(). 20 * @since BuddyPress (2.1.0)20 * @since 2.1.0 21 21 */ 22 22 $.fn.bp_mentions = function( options ) { … … 45 45 * @param {string} search_key 46 46 * @return {array} 47 * @since BuddyPress (2.1.0)47 * @since 2.1.0 48 48 */ 49 49 filter: function( query, data, search_key ) { … … 68 68 * @param {string} query 69 69 * @return {string} 70 * @since BuddyPress (2.1.0)70 * @since 2.1.0 71 71 */ 72 72 highlighter: function( li, query ) { … … 85 85 * 86 86 * @param {unknown} offset 87 * @since BuddyPress (2.1.0)87 * @since 2.1.0 88 88 */ 89 89 before_reposition: function( offset ) { … … 142 142 * @param {string) suffix Applied to the end of the content string. 143 143 * @return {string} 144 * @since BuddyPress (2.1.0)144 * @since 2.1.0 145 145 */ 146 146 inserting_wrapper: function( $inputor, content, suffix ) { … … 160 160 * @param {string} query Partial @mention to search for. 161 161 * @param {function} render_view Render page callback function. 162 * @since BuddyPress (2.1.0)162 * @since 2.1.0 163 163 */ 164 164 remote_filter: function( query, render_view ) { … … 187 187 * 188 188 * @param {object} response Details of users matching the query. 189 * @since BuddyPress (2.1.0)189 * @since 2.1.0 190 190 */ 191 191 .done(function( response ) { … … 201 201 * @param {array} suggestion A suggestion's original data. 202 202 * @return {array} A suggestion's new data. 203 * @since BuddyPress (2.1.0)203 * @since 2.1.0 204 204 */ 205 205 function( suggestion ) { … … 222 222 * @param {array} suggestion A suggestion's original data. 223 223 * @return {array} A suggestion's new data. 224 * @since BuddyPress (2.1.0)224 * @since 2.1.0 225 225 */ 226 226 function( suggestion ) { -
trunk/src/bp-core/admin/css/common-rtl.css
r10063 r10141 2 2 * CSS that is always loaded when in wp-admin 3 3 * 4 * @since BuddyPress (1.6)4 * @since 1.6.0 5 5 */ 6 6 … … 38 38 } 39 39 40 .about-wrap .feature-list.finer-points h4, 40 .about-wrap .feature-list.finer-points h4, 41 41 .about-wrap .feature-list.finer-points p { 42 42 margin-right: 115px; … … 61 61 text-align: center; 62 62 } 63 .about-wrap .feature-list.finer-points h4, 63 .about-wrap .feature-list.finer-points h4, 64 64 .about-wrap .feature-list.finer-points p { 65 65 margin-right: 90px; … … 468 468 top: auto; 469 469 left: auto; 470 } 470 } 471 471 } 472 472 -
trunk/src/bp-core/admin/css/common.css
r10063 r10141 2 2 * CSS that is always loaded when in wp-admin 3 3 * 4 * @since BuddyPress (1.6)4 * @since 1.6.0 5 5 */ 6 6 … … 38 38 } 39 39 40 .about-wrap .feature-list.finer-points h4, 40 .about-wrap .feature-list.finer-points h4, 41 41 .about-wrap .feature-list.finer-points p { 42 42 margin-left: 115px; … … 61 61 text-align: center; 62 62 } 63 .about-wrap .feature-list.finer-points h4, 63 .about-wrap .feature-list.finer-points h4, 64 64 .about-wrap .feature-list.finer-points p { 65 65 margin-left: 90px; … … 468 468 top: auto; 469 469 right: auto; 470 } 470 } 471 471 } 472 472 -
trunk/src/bp-messages/bp-messages-star.php
r10139 r10141 3 3 * Functions related to starring private messages. 4 4 * 5 * @since BuddyPress (2.3.0)5 * @since 2.3.0 6 6 * 7 7 * @package BuddyPress -
trunk/src/bp-notifications/classes/class-bp-notifications-notification.php
r10138 r10141 586 586 * Parse notifications query arguments. 587 587 * 588 * @since BuddyPress2.3.0588 * @since 2.3.0 589 589 * 590 590 * @param mixed $args -
trunk/src/bp-xprofile/admin/js/admin.js
r10022 r10141 100 100 * @summary Toggles "no member type" notice. 101 101 * 102 * @since BuddyPress (2.4.0)102 * @since 2.4.0 103 103 */ 104 104 function toggle_no_member_type_notice() {
Note: See TracChangeset
for help on using the changeset viewer.