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

Built from https://develop.svn.wordpress.org/trunk@27744


git-svn-id: http://core.svn.wordpress.org/trunk@27581 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-03-26 17:46:16 +00:00
parent 0331d62fef
commit 84a4d86536
2 changed files with 4 additions and 4 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;
}

File diff suppressed because one or more lines are too long