summaryrefslogtreecommitdiff
path: root/Cydia.app/package.js
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2008-08-11 11:02:51 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:08:17 +0000
commitdddbc481e8debaf3fd2fe1b41fc4ce30cb29a2b6 (patch)
tree7bdedf86a782e80bb84450e8002dbe81263dd05f /Cydia.app/package.js
parentdc6e62a40e4a0af61c0d57d7732ba59d2329d7c0 (diff)
Themes, automagic SpringBoard, and source data fixes.
Diffstat (limited to 'Cydia.app/package.js')
-rw-r--r--Cydia.app/package.js16
1 files changed, 12 insertions, 4 deletions
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);
+ }
});