diff options
Diffstat (limited to 'Cydia.app/package.js')
-rw-r--r-- | Cydia.app/package.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Cydia.app/package.js b/Cydia.app/package.js index bab0b2f..fb06580 100644 --- a/Cydia.app/package.js +++ b/Cydia.app/package.js @@ -114,7 +114,7 @@ $(function () { if (author == null) $(".author").remove(); else { - $("#author").html(author.name); + space("#author", author.name, 160); if (author.address == null) $("#author-icon").remove(); else @@ -172,7 +172,7 @@ $(function () { if (maintainer == null) $(".maintainer").remove(); else { - $("#maintainer").html(maintainer.name); + space("#maintainer", maintainer.name, 153); if (maintainer.address == null) $("#maintainer-icon").remove(); else @@ -183,7 +183,7 @@ $(function () { if (sponsor == null) $(".sponsor").remove(); else { - $("#sponsor").html(sponsor.name); + space("#sponsor", sponsor.name, 152); $("#sponsor-href").href(sponsor.address); } |