Get first 100 tickets (TODO: get multiple pages)

This commit is contained in:
Simon Kornblith 2012-03-11 16:03:26 -04:00
parent 1050fc32b3
commit 25d48fbca7

View File

@ -70,7 +70,7 @@ var Issues = new function() {
};
var req = new XMLHttpRequest();
req.open("GET", "https://api.github.com/repos/zotero/translators/issues", true);
req.open("GET", "https://api.github.com/repos/zotero/translators/issues?per_page=100", true);
req.onreadystatechange = function(e) {
if(req.readyState != 4) return;