From ed0b146180f1bc5dc936d5f6cb8c0335da4f7a21 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 26 Mar 2014 17:45:28 +0000 Subject: [PATCH] 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 --- src/wp-admin/js/theme.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/js/theme.js b/src/wp-admin/js/theme.js index bb58f52fa5..f5e9d09a57 100644 --- a/src/wp-admin/js/theme.js +++ b/src/wp-admin/js/theme.js @@ -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; }