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:
parent
cce32aa627
commit
ed0b146180
|
@ -208,9 +208,9 @@ themes.Collection = Backbone.Collection.extend({
|
||||||
var collection = this;
|
var collection = this;
|
||||||
instance = instance || 0;
|
instance = instance || 0;
|
||||||
|
|
||||||
// Themes per instance are set at 15
|
// Themes per instance are set at 20
|
||||||
collection = _( collection.rest( 15 * instance ) );
|
collection = _( collection.rest( 20 * instance ) );
|
||||||
collection = _( collection.first( 15 ) );
|
collection = _( collection.first( 20 ) );
|
||||||
|
|
||||||
return collection;
|
return collection;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue