Making WordPress.org

Changeset 1405


Ignore:
Timestamp:
03/17/2015 03:10:50 AM (9 years ago)
Author:
iandunn
Message:

Central Theme: Only try to populate tweets on the home page.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/js/central.js

    r1404 r1405  
    6666     */
    6767    function populateLatestTweets() {
     68        var tweetsContainer = $( '#wc-tweets-container' );
     69
     70        if ( ! tweetsContainer.length ) {
     71            return;
     72        }
     73
    6874        $.getJSON(
    6975            options.ajaxURL,
     
    7379                    spinner         = $( '#wc-tweets-spinner' ),
    7480                    error           = $( '#wc-tweets-error' ),
    75                     tweetsContainer = $( '#wc-tweets-container' ),
    7681                    tweetTemplate   = _.template( $( '#tmpl-wc-tweet' ).html(), null, templateOptions );
    7782
Note: See TracChangeset for help on using the changeset viewer.