Browse Source

Merge branch 'master' of github.com:pinry/pinry

tags/v1.0.0
Isaac Bythewood 11 years ago
parent
commit
4f2a679411
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      pinry/settings/__init__.py
  2. +3
    -3
      pinry/static/js/pinry.js

+ 1
- 1
pinry/settings/__init__.py View File

@@ -73,7 +73,7 @@ MESSAGE_TAGS = {
messages.SUCCESS: 'alert alert-success',
messages.INFO: 'alert alert-info',
}
API_LIMIT_PER_PAGE = 30
API_LIMIT_PER_PAGE = 50


INSTALLED_APPS = (


+ 3
- 3
pinry/static/js/pinry.js View File

@@ -136,10 +136,10 @@ $(window).load(function() {
$('body').append(theEnd);
}
}

// Up our offset, it's currently defined as 30 in our settings
offset += apiLimitPerPage;
});

// Up our offset, it's currently defined as 50 in our settings
offset += apiLimitPerPage;
}




Loading…
Cancel
Save