diff --git a/srv/static/js/packagedetailspage.js b/srv/static/js/packagedetailspage.js index f4c2359..cbe069d 100644 --- a/srv/static/js/packagedetailspage.js +++ b/srv/static/js/packagedetailspage.js @@ -34,7 +34,7 @@ function makePackageID(row) return row.db + (row.dbArch ? '@' + row.dbArch : '') + '/' + row.name; } -function queryPackageDetails(value, row) +export function queryPackageDetails(value, row) { AjaxHelper.queryRoute('GET', '/packages?details=1&name=' + encodeURIComponent(makePackageID(row)), function(ajaxRequest) { showPackageDetails(ajaxRequest, row);