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

git-svn-id: https://develop.svn.wordpress.org/trunk@27744 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-03-26 17:45:28 +00:00
parent cce32aa627
commit ed0b146180
1 changed files with 3 additions and 3 deletions

View File

@ -208,9 +208,9 @@ themes.Collection = Backbone.Collection.extend({
var collection = this;
instance = instance || 0;
// Themes per instance are set at 15
collection = _( collection.rest( 15 * instance ) );
collection = _( collection.first( 15 ) );
// Themes per instance are set at 20
collection = _( collection.rest( 20 * instance ) );
collection = _( collection.first( 20 ) );
return collection;
}