diff options
Diffstat (limited to 'Cydia.app')
-rw-r--r-- | Cydia.app/package.html | 3 | ||||
-rw-r--r-- | Cydia.app/package.js | 16 |
2 files changed, 14 insertions, 5 deletions
diff --git a/Cydia.app/package.html b/Cydia.app/package.html index 5a94df9..1331c7d 100644 --- a/Cydia.app/package.html +++ b/Cydia.app/package.html @@ -75,7 +75,8 @@ <label class="source">Source Infomation</label> <fieldset class="source"> - <a id="origin-link"><label id="origin"></label></a> + <div><label id="source-name"></label></div> + <div id="source-description"></div> </fieldset> </div> diff --git a/Cydia.app/package.js b/Cydia.app/package.js index 60bf483..4539006 100644 --- a/Cydia.app/package.js +++ b/Cydia.app/package.js @@ -16,7 +16,8 @@ "address": "saurik@saurik.com" }, "source": { - "name": "Telesphoreo Tangelo" + "name": "Telesphoreo Tangelo", + "description": "Distribution of Unix Software for the iPhone" } };*/ @@ -79,7 +80,7 @@ $(function () { $("#maintainer-link").href("mailto:" + maintainer.address + "?subject=" + regarding); } - var sponsor = package.maintainer; + var sponsor = package.sponsor; if (sponsor == null) $(".sponsor").remove(); else { @@ -90,6 +91,13 @@ $(function () { var source = package.source; if (source == null) $(".source").remove(); - else - $("#origin").html(source.name); + else { + $("#source-name").html(source.name); + + var description = source.description; + if (description == null) + $(".source-description").remove(); + else + $("#source-description").html(description); + } }); |