Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 403ead3

Browse files
author
Matt Karl
committed
Bumped version, changed default to 24, for better wrapping
1 parent 63c9ce0 commit 403ead3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/helpers/pagination.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
module.exports = function(base, numItems, currentPage, itemsPerPage, buttonCount)
1414
{
15-
itemsPerPage = itemsPerPage || 30;
15+
itemsPerPage = itemsPerPage || 24;
1616

1717
var total = Math.ceil(numItems / itemsPerPage);
1818
var current = parseInt(currentPage) || 1;

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollConnect",
3-
"version": "1.1.8",
3+
"version": "1.1.9",
44
"dependencies": {
55
"jquery": "*",
66
"bootstrap": "*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.8",
2+
"version": "1.1.9",
33
"private": true,
44
"devDependencies": {
55
"grunt": "^0.4.5",

project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollConnect",
3-
"version": "1.1.8",
3+
"version": "1.1.9",
44
"main": [
55
"src/plugins/*.js",
66
"src/widgets/*.js",

0 commit comments

Comments
 (0)