Make WordPress Core

Changeset 27744


Ignore:
Timestamp:
03/26/2014 05:45:28 PM (11 years ago)
Author:
nacin
Message:

Themes screens: Bump to 20 items per page so it fills a high resolution display. see #26968.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/js/theme.js

    r27649 r27744  
    209209        instance = instance || 0;
    210210
    211         // Themes per instance are set at 15
    212         collection = _( collection.rest( 15 * instance ) );
    213         collection = _( collection.first( 15 ) );
     211        // Themes per instance are set at 20
     212        collection = _( collection.rest( 20 * instance ) );
     213        collection = _( collection.first( 20 ) );
    214214
    215215        return collection;
Note: See TracChangeset for help on using the changeset viewer.