Making WordPress.org

Changeset 7086


Ignore:
Timestamp:
04/11/2018 05:49:00 AM (7 years ago)
Author:
dd32
Message:

Trac: Fix the 'Commits' section to work with jQuery 1.9.
As of 1.9 .after() cannot be used outside of the DOM, switch to using .append().

See #3526.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js

    r7085 r7086  
    514514                        })
    515515                        .html( '<a href="#no0" id="no0">Commits <span class="trac-count">(' + commitCount + ')</span></a>' )
    516                         .after(
    517                             $( '<div/>', {
    518                                 class: 'commits'
    519                             })
    520                             .append( $commits )
    521                         )
     516                    ).append(
     517                        $( '<div/>', {
     518                            class: 'commits'
     519                        })
     520                        .append( $commits )
    522521                    )
    523522                );
Note: See TracChangeset for help on using the changeset viewer.